Skip to content

Commit

Permalink
fixed syntax error in test case
Browse files Browse the repository at this point in the history
Signed-off-by: Angraybill <[email protected]>
  • Loading branch information
Angraybill committed Jan 17, 2025
1 parent bc939c2 commit 9250c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/python/tests/test_async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ async def test_conditional_set(self, glide_client: TGlideClient):
key, "foobar", conditional_set=ConditionalChange.ONLY_IF_EQUAL, comparison_value=wrong_comparison_value
)
assert res is None
assert await glide_client.get == value.encode()
assert await glide_client.get(key) == value.encode()
res = await glide_client.set(
key, value2, conditional_set=ConditionalChange.ONLY_IF_EQUAL, comparison_value=value
)
Expand Down

0 comments on commit 9250c5f

Please sign in to comment.