From dff3321540db4863aec93e97f2a5a82ba66ca98d Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 15 Mar 2022 12:50:48 +0200 Subject: [PATCH] fix test --- tests/integration/Espo/Settings/AccessTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/Espo/Settings/AccessTest.php b/tests/integration/Espo/Settings/AccessTest.php index aecba440ac..f7c899ed5f 100644 --- a/tests/integration/Espo/Settings/AccessTest.php +++ b/tests/integration/Espo/Settings/AccessTest.php @@ -38,7 +38,7 @@ class AccessTest extends \tests\integration\Core\BaseTestCase $data = $app->getContainer()->get('serviceFactory')->create('Settings')->getConfigData(); - $this->assertTrue(property_exists($data, 'version')); + $this->assertTrue(property_exists($data, 'cacheTimestamp')); $this->assertFalse(property_exists($data, 'googleMapsApiKey')); $this->assertFalse(property_exists($data, 'outboundEmailFromAddress')); $this->assertFalse(property_exists($data, 'jobPeriod'));