Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 637223b

Browse files
author
Kacper Stasik
committedMar 3, 2017
fix of test PHP 5.4
1 parent 519ff65 commit 637223b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/RedefineTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function testBase()
5454
/* @var $type \GoetasWebservices\XML\XSDReader\Schema\Type\ComplexType */
5555
$type = $localAttr->getType();
5656

57-
$this->assertInstanceOf(\GoetasWebservices\XML\XSDReader\Schema\Type\ComplexType::class, $type);
57+
$this->assertInstanceOf('\GoetasWebservices\XML\XSDReader\Schema\Type\ComplexType', $type);
5858

5959
$children = array();
6060
foreach($type->getElements() as $element){

0 commit comments

Comments
 (0)
Please sign in to comment.