Skip to content

Commit 649227d

Browse files
committed
relax test
1 parent e0d647b commit 649227d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/storage_clients/test_file_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def test_purge_preserves_input_file_and_metadata() -> None:
6363

6464
# Verify INPUT.json content is unchanged
6565
input_content = await asyncio.to_thread(input_file.read_text)
66-
assert input_content == '{"test": "input"}'
66+
assert json.loads(input_content) == json.loads('{"test": "input"}')
6767

6868

6969
@pytest.mark.parametrize('input_file_name', ['INPUT', 'INPUT.json'])

0 commit comments

Comments
 (0)