Skip to content

Commit 4dd6487

Browse files
committed
linter fix
1 parent 649b962 commit 4dd6487

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_cluster.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2642,8 +2642,8 @@ def test_command_with_escaped_data(self, r):
26422642
assert response["command"] == "GET {foo}bar\\\\x92"
26432643

26442644
def test_flush(self, r):
2645-
r.set('x', '1')
2646-
r.set('z', '1')
2645+
r.set("x", "1")
2646+
r.set("z", "1")
26472647
r.flushall()
2648-
assert r.get('x') == None
2649-
assert r.get('y') == None
2648+
assert r.get("x") is None
2649+
assert r.get("y") is None

0 commit comments

Comments
 (0)