From ad289fdeea3186aeff1b599e7d9f7f55b7a13cea Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Mon, 31 Jul 2023 19:59:02 -0700 Subject: [PATCH] fix type check linter warning --- .../iam/opencypher/test_opencypher_query_with_iam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/iam/opencypher/test_opencypher_query_with_iam.py b/test/integration/iam/opencypher/test_opencypher_query_with_iam.py index 3f34c737..1c707b15 100644 --- a/test/integration/iam/opencypher/test_opencypher_query_with_iam.py +++ b/test/integration/iam/opencypher/test_opencypher_query_with_iam.py @@ -22,7 +22,7 @@ def test_do_opencypher_query(self): assert oc_res.status_code == 200 res = oc_res.json() - assert type(res) == dict + assert isinstance(res, dict) assert expected_league_name == res['results'][0]['l.name'] @pytest.mark.opencypher