Skip to content

Commit

Permalink
Remove debug msg
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon committed Aug 31, 2023
1 parent facdec7 commit 9cb3457
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/tests_system/test_temporary_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ def test_path(self) -> None:
def test_path_windows(self) -> None:
with TemporaryDirectory() as work_dir:
if current_platform() == "windows":
print('windows')
windows_home_dir = os.path.expanduser('~')
self.assertTrue(str(work_dir.path).startswith(windows_home_dir))
else:
print('others')
self.assertTrue(str(work_dir.path).startswith(tempfile.gettempdir()))

0 comments on commit 9cb3457

Please sign in to comment.