Skip to content

Commit 5090dd2

Browse files
Changed test file path
1 parent ff26c2a commit 5090dd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/com/magento/idea/magento2plugin/inspections/php/GraphQlResolverInspectionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ protected boolean isWriteActionRequired() {
2727
}
2828

2929
public void testWithInvalidResolverInterface() throws Exception {
30-
myFixture.addFileToProject(getTestDataPath() + "/" + "schema.graphqls", "type Query {" +
30+
myFixture.addFileToProject(getTestDataPath() + "/withInvalidResolverInterface/" + "schema.graphqls", "type Query {" +
3131
"InvalidResolverTest: InvalidResolver @resolver(class: \"\\\\Magento\\\\Test\\\\InvalidResolverTest\")" +
3232
"}");
3333
myFixture.configureByFile(getTestName(true) + "/" + "InvalidResolverTest.php");
3434
myFixture.checkHighlighting();
3535
}
3636

3737
public void testWithValidResolverInterface() throws Exception {
38-
myFixture.addFileToProject(getTestDataPath() + "/" + "schema.graphqls", "type mutation {" +
38+
myFixture.addFileToProject(getTestDataPath() + "/withValidResolverInterface/" + "schema.graphqls", "type mutation {" +
3939
" ValidResolverTest(): ValidResolver @resolver(class: \"\\\\Magento\\\\Test\\\\ValidResolverTest\")" +
4040
"}");
4141
myFixture.configureByFile(getTestName(true) + "/" + "ValidResolverTest.php");

0 commit comments

Comments
 (0)