Procházet zdrojové kódy

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

tags/v0.23.2
gabriel-tessier před 1 rokem
committed by GitHub
rodič
revize
751a05438d
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      tests/test_c4.py

+ 1
- 1
tests/test_c4.py Zobrazit soubor

@@ -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)


Načítá se…
Zrušit
Uložit