소스 검색

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

tags/v0.23.2
gabriel-tessier 1 년 전
committed by GitHub
부모
커밋
751a05438d
No known key found for this signature in database 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)


불러오는 중...
취소
저장