File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 36
36
TESTFN_SRC = TESTFN + "_SRC"
37
37
TESTFN_DST = TESTFN + "_DST"
38
38
MACOS = sys .platform .startswith ("darwin" )
39
+ SOLARIS = sys .platform .startswith ("sunos" )
39
40
AIX = sys .platform [:3 ] == 'aix'
40
41
try :
41
42
import grp
@@ -1243,7 +1244,7 @@ def test_copyfile_same_file(self):
1243
1244
# Make sure file is not corrupted.
1244
1245
self .assertEqual (read_file (src_file ), 'foo' )
1245
1246
1246
- @unittest .skipIf (MACOS or _winapi , 'On MACOS and Windows the errors are not confusing (though different)' )
1247
+ @unittest .skipIf (MACOS or SOLARIS or _winapi , 'On MACOS, Solaris and Windows the errors are not confusing (though different)' )
1247
1248
def test_copyfile_nonexistent_dir (self ):
1248
1249
# Issue 43219
1249
1250
src_dir = self .mkdtemp ()
You can’t perform that action at this time.
0 commit comments