Skip to content

Commit

Permalink
test to ensure container write path is posix formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
mhairifin committed Aug 13, 2024
1 parent b13d214 commit fc2df60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def test_copy_file_to_container(mock_get_container: Mock, tmp_path: Path):

# Assert
mock_get_container.return_value.put_archive.assert_called_once_with(
path=Path(wm.MAPPINGS_DIR), data=b'{"foo": "bar"}'
path=Path(wm.MAPPINGS_DIR).as_posix(), data=b'{"foo": "bar"}'
)


Expand Down

0 comments on commit fc2df60

Please sign in to comment.