Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Dec 29, 2023
1 parent b70ff50 commit d62a0ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def test_database_misc_methods(sys_db, db, bad_db, cluster):
assert err.value.error_code in {11, 1228}

# Test execute JavaScript code
assert db.execute(1) == None
assert db.execute(1) is None
assert db.execute(None) == {"error": False, "code": 200}
assert db.execute("") == {"error": False, "code": 200}
assert db.execute("return 1") == 1
Expand Down

0 comments on commit d62a0ff

Please sign in to comment.