Civi\Angular\ManagerTest - Fix false-negative
authorTim Otten <totten@civicrm.org>
Tue, 9 Feb 2016 21:05:47 +0000 (13:05 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 9 Feb 2016 21:05:47 +0000 (13:05 -0800)
The test is a bit overzealous.  To ensure that the 'settings' are being
processed, it checks to ensure that some settings (any settings) are
defined.  However, it looks for 2+ settings, and it's enough look for 1+.

tests/phpunit/Civi/Angular/ManagerTest.php

index e17e6285f2f3bcceb9ffa1a0801bd579dae8829a..5156611406b8d2dd287a93c146897f564208d901 100644 (file)
@@ -101,7 +101,7 @@ class ManagerTest extends \CiviUnitTestCase {
     $this->assertTrue($counts['js'] > 0, 'Expect to find at least one JS file');
     $this->assertTrue($counts['css'] > 0, 'Expect to find at least one CSS file');
     $this->assertTrue($counts['partials'] > 0, 'Expect to find at least one partial HTML file');
-    $this->assertTrue($counts['settings'] > 1, 'Expect to find at least one setting');
+    $this->assertTrue($counts['settings'] > 0, 'Expect to find at least one setting');
   }
 
   /**