Explorar el Código

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

tags/v0.23.2
gabriel-tessier hace 1 año
committed by GitHub
padre
commit
751a05438d
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      tests/test_c4.py

+ 1
- 1
tests/test_c4.py Ver fichero

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


Cargando…
Cancelar
Guardar