Skip to content

Commit

Permalink
Use the new assertion method
Browse files Browse the repository at this point in the history
As documented here: sebastianbergmann/phpunit#3368
  • Loading branch information
Mopolo committed Jan 11, 2021
1 parent 7197020 commit 0dddb29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ServerTest.php
Expand Up @@ -949,7 +949,7 @@ public function testHandleUsesProperRequestParameter()
{
$server = new \LaminasTest\Soap\TestAsset\MockServer();
$r = $server->handle(new \DOMDocument('1.0', 'UTF-8'));
$this->assertInternalType('string', $server->mockSoapServer->handle[0]);
$this->assertIsString($server->mockSoapServer->handle[0]);
}

/**
Expand Down

0 comments on commit 0dddb29

Please sign in to comment.