Skip to content

Commit

Permalink
Merge 5eadc9f into f482103
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdenvir committed Apr 14, 2020
2 parents f482103 + 5eadc9f commit dad6d40
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 dad6d40

Please sign in to comment.