Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Fixed a unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed May 6, 2016
1 parent f9f9b08 commit 7fe88ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/SymmetricPluginManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public function testHas($symmetric)
*/
public function testGet($symmetric)
{
$plugin = new SymmetricPluginManager();
if (! extension_loaded($symmetric)) {
$this->setExpectedException(Exception\RuntimeException::class);
}
$plugin = new SymmetricPluginManager();
$this->assertInstanceof(SymmetricInterface::class, $plugin->get($symmetric));
}

Expand Down

0 comments on commit 7fe88ff

Please sign in to comment.