Skip to content

Commit 677476d

Browse files
Fix potential test case typo in test_zadd_gt_lt (#1585)
1 parent 9527ae8 commit 677476d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1687,7 +1687,7 @@ def test_zadd_gt_lt(self, r):
16871687
with pytest.raises(exceptions.DataError):
16881688
r.zadd('a', {'a15': 155}, nx=True, lt=True)
16891689
r.zadd('a', {'a15': 155}, nx=True, gt=True)
1690-
r.zadd('a', {'a15': 155}, lx=True, gt=True)
1690+
r.zadd('a', {'a15': 155}, lt=True, gt=True)
16911691

16921692
def test_zcard(self, r):
16931693
r.zadd('a', {'a1': 1, 'a2': 2, 'a3': 3})

0 commit comments

Comments
 (0)