From aebe99aef1860e6ef5c73cbe23a7e6286ff45f82 Mon Sep 17 00:00:00 2001 From: dpepper Date: Sat, 22 Feb 2020 11:07:01 -0800 Subject: [PATCH] LargeBinary support --- graphene_sqlalchemy/tests/test_converter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphene_sqlalchemy/tests/test_converter.py b/graphene_sqlalchemy/tests/test_converter.py index e9ee2379..f0fc1802 100644 --- a/graphene_sqlalchemy/tests/test_converter.py +++ b/graphene_sqlalchemy/tests/test_converter.py @@ -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():