Skip to content

Commit 96857b9

Browse files
committed
Fix lint
1 parent f6d82cc commit 96857b9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/test_full_integration.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -772,9 +772,9 @@ async def test_memory_prompt_with_long_term_search(
772772
)
773773
for msg in messages
774774
)
775-
assert relevant_context_found, (
776-
f"No relevant memory context found in messages: {messages}"
777-
)
775+
assert (
776+
relevant_context_found
777+
), f"No relevant memory context found in messages: {messages}"
778778

779779
# Cleanup
780780
await client.delete_long_term_memories([m.id for m in test_memories])
@@ -1078,9 +1078,9 @@ async def test_full_workflow_integration(
10781078
)
10791079
print(f"No topic filter search results: {no_topic_search}")
10801080

1081-
assert len(search_results["memories"]) > 0, (
1082-
f"No memories found in search results: {search_results}"
1083-
)
1081+
assert (
1082+
len(search_results["memories"]) > 0
1083+
), f"No memories found in search results: {search_results}"
10841084

10851085
# 6. Test tool integration with a realistic scenario
10861086
tool_call = {
@@ -1125,9 +1125,9 @@ async def test_full_workflow_integration(
11251125
m for m in long_term_memories.memories if m.id.startswith(memory_id_prefix)
11261126
]
11271127

1128-
assert len(our_memories) == 0, (
1129-
f"Expected 0 of our memories but found {len(our_memories)}: {our_memories}"
1130-
)
1128+
assert (
1129+
len(our_memories) == 0
1130+
), f"Expected 0 of our memories but found {len(our_memories)}: {our_memories}"
11311131

11321132

11331133
@pytest.mark.integration

0 commit comments

Comments
 (0)