From c8abb13e6dea20a39f29d7674f91a5342fd6093b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 30 Dec 2017 19:41:32 +0100 Subject: [PATCH] Fix: Case mismatch --- tests/Constraints/TypeTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Constraints/TypeTest.php b/tests/Constraints/TypeTest.php index 0c584307..ca6bf7cf 100644 --- a/tests/Constraints/TypeTest.php +++ b/tests/Constraints/TypeTest.php @@ -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); @@ -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(