Skip to content

Commit fa7368e

Browse files
committed
fix:tests now supported by dragonfly
1 parent 68993e9 commit fa7368e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/test_mixins/test_list_commands.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,6 @@ def test_brpoplpush_multi_keys(r: redis.Redis):
522522
assert r.lrem("bar", -1, "two") == 1
523523

524524

525-
@pytest.mark.unsupported_server_types("dragonfly") # TODO Should this be supported?
526525
def test_brpoplpush_wrong_type(r: redis.Redis):
527526
r.set("foo", "bar")
528527
r.rpush("list", "element")
@@ -656,7 +655,6 @@ def test_lpos(r: redis.Redis):
656655
assert r.lpos("a", "c", count=0, maxlen=7, rank=2) == [6]
657656

658657

659-
@pytest.mark.unsupported_server_types("dragonfly")
660658
@pytest.mark.min_server("7")
661659
def test_blmpop(r: redis.Redis):
662660
r.rpush("a", "1", "2", "3", "4", "5")
@@ -669,7 +667,6 @@ def test_blmpop(r: redis.Redis):
669667
assert r.blmpop(1, "2", "foo", "bar", direction="RIGHT") is None
670668

671669

672-
@pytest.mark.unsupported_server_types("dragonfly")
673670
@pytest.mark.min_server("7")
674671
def test_lmpop(r: redis.Redis):
675672
r.rpush("foo", "1", "2", "3", "4", "5")

0 commit comments

Comments
 (0)