We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b67691 commit b1b48edCopy full SHA for b1b48ed
graphene_sqlalchemy/tests/test_converter.py
@@ -8,6 +8,7 @@
8
9
import graphene
10
from graphene.relay import Node
11
+from graphene.types.datetime import DateTime
12
from graphene.types.json import JSONString
13
14
from ..converter import (convert_sqlalchemy_column,
@@ -52,7 +53,7 @@ def test_should_date_convert_string():
52
53
54
55
def test_should_datetime_convert_string():
- assert_column_conversion(types.DateTime(), graphene.DateTime)
56
+ assert_column_conversion(types.DateTime(), DateTime)
57
58
59
def test_should_time_convert_string():
0 commit comments