@@ -1637,7 +1637,7 @@ def _create_files(self, base_dir='dist'):
16371637 return root_dir , base_dir
16381638
16391639 def _create_files_symlinks (self , base_dir = "symlinks" ):
1640- # Create a test structure containing symbolic links to files and
1640+ # Create a test structure containing symbolic links to files and
16411641 # directories.
16421642 root_dir = self .mkdtemp ()
16431643 wd = os .path .join (root_dir , base_dir )
@@ -1916,8 +1916,8 @@ def test_zipfile_vs_zip(self):
19161916 @os_helper .skip_unless_symlink
19171917 def test_make_zipfile_symlink_behaviour (self ):
19181918 # Test that symbolic links for both file and directories are resolved
1919- # to their targets when shutil.make_archive() is used to make a zip
1920- # file, to match default command-line zip behaviour in
1919+ # to their targets when shutil.make_archive() is used to make a zip
1920+ # file, to match default command-line zip behaviour in
19211921 # Linux/UNIX/Windows.
19221922
19231923 # If this test is being skipped, it is because either the operating
@@ -1937,14 +1937,14 @@ def test_make_zipfile_symlink_behaviour(self):
19371937 extract_dir = os .path .join (root_dir , base_dir , 'extract' )
19381938 zf .extractall (extract_dir )
19391939 try :
1940- # If symbolic link sub2 that targets directory sub1 was
1940+ # If symbolic link sub2 that targets directory sub1 was
19411941 # preserved as a link then sub2/file2 will not exist.
19421942 self .assertTrue (
19431943 os .path .exists (
19441944 os .path .join (extract_dir , base_dir , 'sub2/file2' )
19451945 )
19461946 )
1947- # If symbolic link link1 that targets file1 was preserved then
1947+ # If symbolic link link1 that targets file1 was preserved then
19481948 # it will be a symbolic link.
19491949 self .assertFalse (
19501950 os .path .islink (
0 commit comments