Ver código fonte

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

tags/v0.23.2
gabriel-tessier 1 ano atrás
committed by GitHub
pai
commit
751a05438d
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      tests/test_c4.py

+ 1
- 1
tests/test_c4.py Ver arquivo

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


Carregando…
Cancelar
Salvar