Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/7461'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed May 6, 2015
7 parents 445c622 + e27e201 + 320207a + ed4e6cb + f979380 + 2351779 + 8a45354 commit 2954bc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/File/UploadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public function testSetFiles()
*/
public function testGetFilesReturnsEmptyArrayWhenFilesSuperglobalIsNull()
{
$_FILES = NULL;
$_FILES = null;
$validator = new File\Upload();
$validator->setFiles();
$this->assertEquals(array(), $validator->getFiles());
Expand All @@ -231,7 +231,7 @@ public function testGetFilesReturnsEmptyArrayWhenFilesSuperglobalIsNull()
public function testGetFilesReturnsEmptyArrayAfterSetFilesIsCalledWithNull()
{
$validator = new File\Upload();
$validator->setFiles(NULL);
$validator->setFiles(null);
$this->assertEquals(array(), $validator->getFiles());
}

Expand Down

0 comments on commit 2954bc2

Please sign in to comment.