This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
diagrams
mirror of
https://github.com/mingrammer/diagrams.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
fix(tests): set lower for case sensitive system (
#805
)
tags/v0.23.2
gabriel-tessier
1 year ago
committed by
GitHub
parent
65b51469f4
commit
751a05438d
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tests/test_c4.py
+ 1
- 1
tests/test_c4.py
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save