Skip to content

Commit

Permalink
fix(tests): set lower for case sensitive system (#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-tessier authored Jan 8, 2023
1 parent 65b5146 commit 751a054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_c4.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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)
Expand Down

0 comments on commit 751a054

Please sign in to comment.