Skip to content

Commit

Permalink
chore: Fix url serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
alithethird committed Sep 4, 2024
1 parent 44c52b3 commit 5848294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_reactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def test_reactive_mode_consumes_jobs(ops_test: OpsTest, app_for_reactive:
labels=[secrets.token_hex(16) for _ in range(random.randint(1, 4))], run_url=FAKE_URL
)
_add_to_queue(
json.dumps(job.dict() | {"ignored_noise": "foobar"}),
json.dumps(job.dict() | {"ignored_noise": "foobar"}, default=lambda x: str(x)),
mongodb_uri,
app_for_reactive.name,
)
Expand Down

0 comments on commit 5848294

Please sign in to comment.