Skip to content

Commit

Permalink
Update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed Nasser committed Feb 23, 2025
1 parent 776043e commit c771887
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/testing/agent_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,6 @@ def testMockPersistAgent_whensetMethodsAreCalled_stateIsPersistedByMock(
assert test_agent.set_add("test", "1") is True
assert test_agent.set_is_member("test", "1") is True
assert agent_persist_mock == {"test": {"1"}}
assert test_agent.exists("akey") is False
test_agent.add("akey", b"aval")
assert test_agent.exists("akey") is True

0 comments on commit c771887

Please sign in to comment.