Skip to content

Commit f529931

Browse files
committed
Fix for tests
1 parent 5d04792 commit f529931

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/com/magento/idea/magento2plugin/actions/generation/generator/CLICommandClassGeneratorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class CLICommandClassGeneratorTest extends BaseGeneratorTestCase {
1414
private static final String PARENT_DIRECTORY = "Console";
1515
private static final String COMMAND_NAME = "bar:test-command";
1616
private static final String DESCRIPTION = "This is the test command";
17-
private static final String NAMESPACE = "Foo\\Bar\\Console";
17+
private static final String NAMESPACE = "Foo\\Bar\\Console\\Command";
1818
private static final String MODULE_NAME = "Foo_Bar";
1919

2020
/**
@@ -38,7 +38,7 @@ public void testGenerateCLICommandClass() {
3838

3939
assertGeneratedFileIsCorrect(
4040
expectedFile,
41-
"src/app/code/Foo/Bar/Console",
41+
"src/app/code/Foo/Bar/Console/Command",
4242
cliCommandClass
4343
);
4444
}

0 commit comments

Comments
 (0)