Skip to content

Commit 8e8114b

Browse files
committed
removed usage of sf2 when possible
1 parent 14baea1 commit 8e8114b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/CompoundFormTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ public function requestMethodProvider()
595595
*/
596596
public function testSubmitPostOrPutRequest($method)
597597
{
598-
$path = tempnam(sys_get_temp_dir(), 'sf2');
598+
$path = tempnam(sys_get_temp_dir(), 'sf');
599599
touch($path);
600600
file_put_contents($path, 'zaza');
601601
$values = array(
@@ -643,7 +643,7 @@ public function testSubmitPostOrPutRequest($method)
643643
*/
644644
public function testSubmitPostOrPutRequestWithEmptyRootFormName($method)
645645
{
646-
$path = tempnam(sys_get_temp_dir(), 'sf2');
646+
$path = tempnam(sys_get_temp_dir(), 'sf');
647647
touch($path);
648648
file_put_contents($path, 'zaza');
649649

@@ -691,7 +691,7 @@ public function testSubmitPostOrPutRequestWithEmptyRootFormName($method)
691691
*/
692692
public function testSubmitPostOrPutRequestWithSingleChildForm($method)
693693
{
694-
$path = tempnam(sys_get_temp_dir(), 'sf2');
694+
$path = tempnam(sys_get_temp_dir(), 'sf');
695695
touch($path);
696696
file_put_contents($path, 'zaza');
697697

@@ -728,7 +728,7 @@ public function testSubmitPostOrPutRequestWithSingleChildForm($method)
728728
*/
729729
public function testSubmitPostOrPutRequestWithSingleChildFormUploadedFile($method)
730730
{
731-
$path = tempnam(sys_get_temp_dir(), 'sf2');
731+
$path = tempnam(sys_get_temp_dir(), 'sf');
732732
touch($path);
733733
file_put_contents($path, 'zaza');
734734

0 commit comments

Comments
 (0)