Skip to content

Commit

Permalink
Merge pull request #485 from localheinz/fix/case
Browse files Browse the repository at this point in the history
Fix: Case mismatch
  • Loading branch information
bighappyface authored Dec 31, 2017
2 parents a82e661 + c8abb13 commit b78d9ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Constraints/TypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function testIndefiniteArticleForTypeInTypeCheckErrorMessage($type, $word
*/
public function testLooseTypeChecking()
{
$v = new \StdClass();
$v = new \stdClass();
$v->property = 'dataOne';
LooseTypeCheck::propertySet($v, 'property', 'dataTwo');
$this->assertEquals('dataTwo', $v->property);
Expand Down Expand Up @@ -111,7 +111,7 @@ public function testValidateTypeNameWording()
public function testValidateTypeException()
{
$t = new TypeConstraint();
$data = new \StdClass();
$data = new \stdClass();
$schema = json_decode('{"type": "notAValidTypeName"}');

$this->setExpectedException(
Expand Down

0 comments on commit b78d9ec

Please sign in to comment.