Skip to content

Commit 4cbc66d

Browse files
committed
Fix skipif condition on new test
I'm an idiot, messed up the condition when tweaking the test manually before committing.
1 parent cbfd737 commit 4cbc66d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/tests/file/tempnam_variation9.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Test tempnam() function: usage variations - test prefix maximum size
33
--SKIPIF--
44
<?php
5-
if (PHP_OS_FAMILY !== 'Windows') {
5+
if (PHP_OS_FAMILY === 'Windows') {
66
die("skip Do not run on Windows");
77
}
88
?>

0 commit comments

Comments
 (0)