Skip to content

Commit

Permalink
Test fixes for upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby authored and Sam Minnée committed Mar 29, 2017
1 parent 0424276 commit a4ec17f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/php/LeftAndMainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
];

Expand Down
4 changes: 2 additions & 2 deletions tests/php/ModelAdminTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
];
Expand Down
2 changes: 1 addition & 1 deletion tests/php/SecurityAdminTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class SecurityAdminTest extends FunctionalTest

protected static $fixture_file = 'LeftAndMainTest.yml';

protected $extraDataObjects = [
protected static $extra_dataobjects = [
LeftAndMainTest\TestObject::class,
];

Expand Down

0 comments on commit a4ec17f

Please sign in to comment.