Sfoglia il codice sorgente

fix(tests): set lower for case sensitive system

pull/805/head
tessier 2 anni fa
parent
commit
d1669f619f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      tests/test_c4.py

+ 1
- 1
tests/test_c4.py Vedi 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)


Caricamento…
Annulla
Salva