Skip to content

Commit

Permalink
fix(tests): set lower for case sensitive system (mingrammer#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-tessier authored and ajmaradiaga committed Nov 8, 2023
1 parent c5720a7 commit a247fc1
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 a247fc1

Please sign in to comment.