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 78eff68 commit 6110990Copy full SHA for 6110990
1 file changed
tests/tools/zipapp/zipper_test.py
@@ -26,7 +26,7 @@ def _create_zip(self, **kwargs):
26
"workspace_name": "my_ws",
27
"legacy_external_runfiles": False,
28
"runfiles_dir": "runfiles",
29
- "pathsep": "/",
+ "platform_pathsep": "/",
30
}
31
defaults.update(kwargs)
32
zipper.create_zip(**defaults)
@@ -120,8 +120,8 @@ def test_pathsep_normalization(self):
120
]
121
self.manifest_path.write_text("\n".join(manifest_content))
122
123
- # Use backslash as pathsep
124
- self._create_zip(pathsep="\\")
+ # Use backslash as platform_pathsep
+ self._create_zip(platform_pathsep="\\")
125
126
with zipfile.ZipFile(self.output_zip, "r") as zf:
127
# zipfile.namelist() always returns with forward slashes
0 commit comments