Skip to content

Commit 0a2fd0d

Browse files
committed
Fix directory clash in tempnam_variation4 test
1 parent 58e6a0a commit 0a2fd0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/standard/tests/file/tempnam_variation4-0.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require __DIR__ . '/../skipif_root.inc';
2020

2121
echo "*** Testing tempnam() with dir of permissions from 0000 to 0350 ***\n";
2222
$file_path = __DIR__;
23-
$dir_name = $file_path."/tempnam_variation4";
23+
$dir_name = $file_path."/tempnam_variation4-0";
2424
$prefix = "tempnamVar4.";
2525

2626
mkdir($dir_name);

ext/standard/tests/file/tempnam_variation4-1.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require __DIR__ . '/../skipif_root.inc';
2020

2121
echo "*** Testing tempnam() with dir of permissions from 0351 to 0777 ***\n";
2222
$file_path = __DIR__;
23-
$dir_name = $file_path."/tempnam_variation4";
23+
$dir_name = $file_path."/tempnam_variation4-1";
2424
$prefix = "tempnamVar4.";
2525

2626
mkdir($dir_name);

0 commit comments

Comments
 (0)