Skip to content

Commit

Permalink
test: Fix expectations for typical warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed May 9, 2024
1 parent 46b71c4 commit f8d9033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/extensions/test_database_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_spider_closed_warnings(caplog, tmpdir):
'Replacing the JSON data in the test table (3 rows)',
]

assert [record.message for record in records] == [
assert [str(record.message) for record in records] == [
("x: Multiple objects have the `id` value 'x' in the `parties` array"),
("z: Multiple objects have the `id` value 'z' in the `parties` array"),
]
Expand Down

0 comments on commit f8d9033

Please sign in to comment.