Skip to content

Commit 304fbf7

Browse files
authored
fix type check linter warning (#514)
1 parent 1068ac5 commit 304fbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/iam/opencypher/test_opencypher_query_with_iam.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_do_opencypher_query(self):
2222
assert oc_res.status_code == 200
2323

2424
res = oc_res.json()
25-
assert type(res) == dict
25+
assert isinstance(res, dict)
2626
assert expected_league_name == res['results'][0]['l.name']
2727

2828
@pytest.mark.opencypher

0 commit comments

Comments
 (0)