Skip to content

Commit 770b9e1

Browse files
fix: update test to expect JSON string in cache add call
1 parent 8d8c994 commit 770b9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_crew.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2229,7 +2229,7 @@ def cache_func(args, result):
22292229
# Verify that one of those calls was with the even number that should be cached
22302230
add_to_cache.assert_any_call(
22312231
tool="multiplcation_tool",
2232-
input={"first_number": 2, "second_number": 6},
2232+
input='{"first_number": 2, "second_number": 6}',
22332233
output=12,
22342234
)
22352235

0 commit comments

Comments
 (0)