Skip to content

Commit 36ef30c

Browse files
author
Fred Sung
committed
MAGETWO-38833: Fix error message format inconsistency in theme uninstall command
- Code style issue fixed.
1 parent 7367071 commit 36ef30c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/Theme/Test/Unit/Console/Command/ThemeUninstallCommandTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,9 @@ public function testExecuteFailedThemeInUseCheck()
272272
$this->tester->execute(['theme' => ['frontend/Magento/a']]);
273273
$this->assertEquals(
274274
'Unable to uninstall. Please fix the following issues:' . PHP_EOL
275-
. 'frontend/Magento/a is in use in default config' . PHP_EOL, $this->tester->getDisplay());
275+
. 'frontend/Magento/a is in use in default config' . PHP_EOL,
276+
$this->tester->getDisplay()
277+
);
276278
}
277279

278280
/**

0 commit comments

Comments
 (0)