Skip to content
Snippets Groups Projects
Commit 36dad0b7 authored by Benjamin Franzke's avatar Benjamin Franzke Committed by Georg Ringer
Browse files

[BUGFIX] Fix warning in AbstractConfigurationManagerTest

https://review.typo3.org/c/Packages/TYPO3.CMS/+/60834
changed the method getSwitchableControllerActions
to be called getControllerConfiguration. It was forgotten
to update one mock in AbstractConfigurationManagerTest
which caused the test to be skipped with a warning.

Resolves: #88808
Related: #88496
Releases: master
Change-Id: I7624a274db13e16fc2002468b1eee0459713de93
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/61330


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent d1f4dbdb
No related merge requests found
......@@ -537,7 +537,7 @@ class AbstractConfigurationManagerTest extends UnitTestCase
'CurrentExtensionName',
'CurrentPluginName'
)->will($this->returnValue($this->testPluginConfiguration));
$this->abstractConfigurationManager->expects($this->once())->method('getSwitchableControllerActions')->with(
$this->abstractConfigurationManager->expects($this->once())->method('getControllerConfiguration')->with(
'CurrentExtensionName',
'CurrentPluginName'
)->will($this->returnValue($this->testSwitchableControllerActions));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment