Parcourir la source

Resolved test issue

Vsevolod Levitan il y a 1 an
Parent
commit
2668c081bb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/test_converters.py

+ 1 - 1
tests/test_converters.py

@@ -26,7 +26,7 @@ class test_converters(unittest.TestCase):
         contor = model_converter()
         conv = contor.convert(g)
 
-        assert g.id == conv["id"]
+        assert str(g.id) == conv["id"]
         assert g.name == conv["name"]
 
     def test_datetime(self):