]> granicus.if.org Git - php/commitdiff
Fix file clash in fgetcsv test
authorNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Jun 2019 15:25:43 +0000 (17:25 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 17 Jun 2019 15:25:43 +0000 (17:25 +0200)
ext/standard/tests/file/bug53848.phpt

index eacf11096962f2ea103b15831ca0a60ef2ee15d1..d634838b458f9893d0f163478cbdc3d9ce9f238b 100644 (file)
@@ -2,7 +2,7 @@
 Bug #53848 (fgetcsv removes leading spaces from fields)
 --FILE--
 <?php
-$file = __DIR__ . "/bug39538.csv";
+$file = __DIR__ . "/bug53848.csv";
 @unlink($file);
 file_put_contents($file, "a,b\n  c,  d");
 $fp = fopen($file, "r");