Fixed the call to the reader baseURL in HealthTest.php.

This commit is contained in:
Derek 2020-11-07 16:24:59 -07:00
parent 7498ac7002
commit 0da2f0c21c
No known key found for this signature in database
GPG Key ID: E4B535C626B121C5

View File

@ -26,7 +26,7 @@ class HealthTest extends \CodeIgniter\Test\CIUnitTestCase
// Then check the actual config file
$reader = new \Tests\Support\Libraries\ConfigReader();
$config = ! empty($reader->baseUrl);
$config = ! empty($reader->baseURL);
$this->assertTrue($env || $config);
}