소스 검색

Resolved test issue

Vsevolod Levitan 1 년 전
부모
커밋
2668c081bb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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):