浏览代码

fix(tests): set lower for case sensitive system (#805)

tags/v0.23.2
gabriel-tessier 1年前
committed by GitHub
父节点
当前提交
751a05438d
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      tests/test_c4.py

+ 1
- 1
tests/test_c4.py 查看文件

@@ -10,7 +10,7 @@ from diagrams.c4 import Person, Container, Database, System, SystemBoundary, Rel

class C4Test(unittest.TestCase):
def setUp(self):
self.name = "diagram-" + "".join([random.choice(string.hexdigits) for n in range(7)])
self.name = "diagram-" + "".join([random.choice(string.hexdigits) for n in range(7)]).lower()

def tearDown(self):
setdiagram(None)


正在加载...
取消
保存