Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unittest for issue 14269 #14280

Closed
wants to merge 12 commits into from
Prev Previous commit
Use plural name
  • Loading branch information
ruudboon committed Aug 4, 2019
commit 39faadc78b44ecf88fa36b760b517104a0ebe86b
2 changes: 1 addition & 1 deletion tests/unit/Di/Injectable/UnderscoreGetCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function diInjectableUnderscoreGet(UnitTester $I)
$I->assertEquals($eventsManager, $eventsManagerFromInjectable);

$newEventManager = new Manager();
$testComponent->setEventManager($newEventManager);
$testComponent->setEventsManager($newEventManager);
$I->assertEquals($newEventManager, $testComponent->eventsManager);
$I->assertEquals($newEventManager, $testComponent->getEventsManager());
}
Expand Down