Skip to content

Commit

Permalink
chore: relax the version check in test_replicate_old_master
Browse files Browse the repository at this point in the history
For commits marked with a git tag, the previous check did not hold.

Signed-off-by: Roman Gershman <[email protected]>
  • Loading branch information
romange committed Aug 8, 2024
1 parent 25fc8bc commit 1e7ca5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/dragonfly/replication_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@ async def test_replicate_old_master(
f"df-{dfly_version}"
== (await c_master.execute_command("info", "server"))["dragonfly_version"]
)
assert "df-dev" == (await c_replica.execute_command("info", "server"))["dragonfly_version"]
assert dfly_version != (await c_replica.execute_command("info", "server"))["dragonfly_version"]

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

Expand Down

0 comments on commit 1e7ca5a

Please sign in to comment.