Skip to content

Commit

Permalink
Merge branch 'qa/3'
Browse files Browse the repository at this point in the history
Close #3
  • Loading branch information
michalbundyra committed Apr 14, 2020
2 parents f482103 + 34cb5d8 commit 083c7e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/Adapter/IgBinaryTest.php
Expand Up @@ -28,7 +28,9 @@ protected function setUp()
if (! extension_loaded('igbinary')) {
try {
new Serializer\Adapter\IgBinary();
$this->fail("Laminas\\Serializer\\Adapter\\IgBinary needs missing ext/igbinary but did't throw exception");
$this->fail(
"Laminas\\Serializer\\Adapter\\IgBinary needs missing ext/igbinary but did't throw exception"
);
} catch (ExtensionNotLoadedException $e) {
}
$this->markTestSkipped('Laminas\\Serializer\\Adapter\\IgBinary needs ext/igbinary');
Expand Down
4 changes: 3 additions & 1 deletion test/Adapter/MsgPackTest.php
Expand Up @@ -28,7 +28,9 @@ protected function setUp()
if (! extension_loaded('msgpack')) {
try {
new Serializer\Adapter\MsgPack();
$this->fail("Laminas\\Serializer\\Adapter\\MsgPack needs missing ext/msgpack but did't throw exception");
$this->fail(
"Laminas\\Serializer\\Adapter\\MsgPack needs missing ext/msgpack but did't throw exception"
);
} catch (ExtensionNotLoadedException $e) {
}
$this->markTestSkipped('Laminas\\Serializer\\Adapter\\MsgPack needs ext/msgpack');
Expand Down

0 comments on commit 083c7e7

Please sign in to comment.