Skip to content

Commit f7de408

Browse files
committed
fix risky tests
1 parent 60c53c1 commit f7de408

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/Normalizer/AbstractObjectNormalizerTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public function testInstantiateObjectDenormalizer()
3636
$context = array();
3737

3838
$normalizer = new AbstractObjectNormalizerDummy();
39-
$normalizer->instantiateObject($data, $class, $context, new \ReflectionClass($class), array());
39+
40+
$this->assertInstanceOf(__NAMESPACE__.'\Dummy', $normalizer->instantiateObject($data, $class, $context, new \ReflectionClass($class), array()));
4041
}
4142
}
4243

0 commit comments

Comments
 (0)