]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tests/PluginManagerTest.php
Run Unit Tests against PHP 7.4
[github/shaarli/Shaarli.git] / tests / PluginManagerTest.php
index 71761ac17db62f18eb199f4f85e32774b4ae2cf4..195d959c2fc4c3ab3e30d4a07b9b1ce57105a1f1 100644 (file)
@@ -58,13 +58,12 @@ class PluginManagerTest extends \PHPUnit\Framework\TestCase
 
     /**
      * Test missing plugin loading.
-     *
-     * @return void
      */
     public function testPluginNotFound()
     {
         $this->pluginManager->load(array());
         $this->pluginManager->load(array('nope', 'renope'));
+        $this->addToAssertionCount(1);
     }
 
     /**