We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0d647b commit 649227dCopy full SHA for 649227d
tests/unit/storage_clients/test_file_system.py
@@ -63,7 +63,7 @@ async def test_purge_preserves_input_file_and_metadata() -> None:
63
64
# Verify INPUT.json content is unchanged
65
input_content = await asyncio.to_thread(input_file.read_text)
66
- assert input_content == '{"test": "input"}'
+ assert json.loads(input_content) == json.loads('{"test": "input"}')
67
68
69
@pytest.mark.parametrize('input_file_name', ['INPUT', 'INPUT.json'])
0 commit comments