Skip to content

Commit aed65df

Browse files
committed
Drop the check for Windows 9x
We could quite safely assume that the tests are not going to be executed on Windows 9x.
1 parent c5faa41 commit aed65df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/java/org/codehaus/plexus/components/io/attributes/FileAttributesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void testGetPosixFileAttributes()
3333
throws Exception
3434
{
3535

36-
if ( Os.isFamily( Os.FAMILY_WINDOWS ) || Os.isFamily( Os.FAMILY_WIN9X ) )
36+
if ( Os.isFamily( Os.FAMILY_WINDOWS ) )
3737
{
3838
return;
3939
}

src/test/java/org/codehaus/plexus/components/io/attributes/PlexusIoResourceAttributeUtilsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testGetAttributesForThisTestClass()
7070
public void testFolder()
7171
throws IOException, CommandLineException {
7272

73-
if (Os.isFamily( Os.FAMILY_WINDOWS ) || Os.isFamily( Os.FAMILY_WIN9X )){
73+
if (Os.isFamily( Os.FAMILY_WINDOWS )){
7474
return; // Nothing to do here.
7575
}
7676

@@ -113,7 +113,7 @@ public void testFolder()
113113
public void testSrcResource()
114114
throws IOException
115115
{
116-
if (Os.isFamily( Os.FAMILY_WINDOWS ) || Os.isFamily( Os.FAMILY_WIN9X )){
116+
if (Os.isFamily( Os.FAMILY_WINDOWS )){
117117
return; // Nothing to do here.
118118
}
119119

0 commit comments

Comments
 (0)