Skip to content

Commit

Permalink
fix test os detection
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Sep 6, 2024
1 parent a0e0865 commit 7da911f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functions/FileSetAccessMode.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" {
}

private function isNotUnix(){
return (server.os.name == "windows");
return (server.os.name contains "windows");
}

}

0 comments on commit 7da911f

Please sign in to comment.