Skip to content

Commit 1e7ca5a

Browse files
committed
chore: relax the version check in test_replicate_old_master
For commits marked with a git tag, the previous check did not hold. Signed-off-by: Roman Gershman <[email protected]>
1 parent 25fc8bc commit 1e7ca5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/dragonfly/replication_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2289,7 +2289,7 @@ async def test_replicate_old_master(
22892289
f"df-{dfly_version}"
22902290
== (await c_master.execute_command("info", "server"))["dragonfly_version"]
22912291
)
2292-
assert "df-dev" == (await c_replica.execute_command("info", "server"))["dragonfly_version"]
2292+
assert dfly_version != (await c_replica.execute_command("info", "server"))["dragonfly_version"]
22932293

22942294
await c_master.execute_command("set", "k1", "v1")
22952295

0 commit comments

Comments
 (0)