From a4ec17ffbb64014778c8d481dbb1198408417403 Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Wed, 29 Mar 2017 23:11:34 +0100 Subject: [PATCH] Test fixes for upstream changes --- tests/php/LeftAndMainTest.php | 4 ++-- tests/php/ModelAdminTest.php | 4 ++-- tests/php/SecurityAdminTest.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/php/LeftAndMainTest.php b/tests/php/LeftAndMainTest.php index d39533a3a..d8da56042 100644 --- a/tests/php/LeftAndMainTest.php +++ b/tests/php/LeftAndMainTest.php @@ -16,11 +16,11 @@ class LeftAndMainTest extends FunctionalTest protected static $fixture_file = 'LeftAndMainTest.yml'; - protected $extraDataObjects = [ + protected static $extra_dataobjects = [ LeftAndMainTest\TestObject::class ]; - protected $extraControllers = [ + protected static $extra_controllers = [ LeftAndMainTest\TestController::class, ]; diff --git a/tests/php/ModelAdminTest.php b/tests/php/ModelAdminTest.php index 857cd9bb3..1c092bff1 100644 --- a/tests/php/ModelAdminTest.php +++ b/tests/php/ModelAdminTest.php @@ -9,12 +9,12 @@ class ModelAdminTest extends FunctionalTest { protected static $fixture_file = 'ModelAdminTest.yml'; - protected $extraDataObjects = [ + protected static $extra_dataobjects = [ ModelAdminTest\Contact::class, ModelAdminTest\Player::class ]; - protected $extraControllers = [ + protected static $extra_controllers = [ ModelAdminTest\ContactAdmin::class, ModelAdminTest\PlayerAdmin::class, ]; diff --git a/tests/php/SecurityAdminTest.php b/tests/php/SecurityAdminTest.php index 62eb6be9f..308997394 100644 --- a/tests/php/SecurityAdminTest.php +++ b/tests/php/SecurityAdminTest.php @@ -13,7 +13,7 @@ class SecurityAdminTest extends FunctionalTest protected static $fixture_file = 'LeftAndMainTest.yml'; - protected $extraDataObjects = [ + protected static $extra_dataobjects = [ LeftAndMainTest\TestObject::class, ];