Skip to content

Commit

Permalink
edit test to reflect changes in master
Browse files Browse the repository at this point in the history
  • Loading branch information
samayo committed Sep 14, 2017
1 parent f5ee15e commit 584b9a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/uploadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function testUploadFailsIfImageSizeIsSmallerThanDefined()
$upload = $this->bulletproof->upload();
$this->assertEquals(
$this->bulletproof['error'],
"Image size should be at least more than 1 kb"
"Image size should be at least 1 KB, and no more than 10 KB"
);
}

Expand Down Expand Up @@ -108,7 +108,7 @@ public function testReturnValueOfImageNameAfterImageUpload()
{
$this->bulletproof['ikea'];
$upload = $this->bulletproof->upload();
$this->assertSame(strlen($upload->getName()), 28);
$this->assertSame(strlen($upload->getName()), 37);
}

/**
Expand Down

0 comments on commit 584b9a6

Please sign in to comment.