Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion graphene_sqlalchemy/tests/test_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ class Model(declarative_base()):
def test_should_unknown_sqlalchemy_field_raise_exception():
re_err = "Don't know how to convert the SQLAlchemy field"
with pytest.raises(Exception, match=re_err):
get_field(types.Binary())
# support legacy Binary type and subsequent LargeBinary
get_field(getattr(types, 'LargeBinary', types.Binary)())


def test_should_date_convert_string():
Expand Down