Skip to content

Commit

Permalink
fix type check linter warning (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelnchin authored Aug 1, 2023
1 parent 1068ac5 commit 304fbf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 304fbf7

Please sign in to comment.