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 340b29d commit ecbc00fCopy full SHA for ecbc00f
graphene_sqlalchemy/tests/test_converter.py
@@ -48,11 +48,10 @@ class Model(declarative_base()):
48
49
50
def test_should_unknown_sqlalchemy_field_raise_exception():
51
- # TODO: SQLALchemy does not export types.Binary, remove or update this test
52
re_err = "Don't know how to convert the SQLAlchemy field"
53
with pytest.raises(Exception, match=re_err):
54
# support legacy Binary type and subsequent LargeBinary
55
- get_field(getattr(types, 'LargeBinary', types.Binary)())
+ get_field(getattr(types, 'LargeBinary', types.BINARY)())
56
57
58
def test_should_date_convert_string():
0 commit comments