Skip to content

Commit

Permalink
Fix deprecation warning in tests (#268)
Browse files Browse the repository at this point in the history
Use sqlalchemy.types.LargeBinary instead of Binary
  • Loading branch information
dpep authored Feb 24, 2020
1 parent 3c3442e commit 421f8e4
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 421f8e4

Please sign in to comment.