Skip to content

Commit 85746b6

Browse files
committed
1211: fixed widows path
1 parent f73d170 commit 85746b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/kotlin/com/magento/idea/magento2plugin/actions/content/MarkDirectoryAsMagentoRootTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class MarkDirectoryAsMagentoRootTest {
109109
comboBox.keyboard {
110110
hotKey(VK_CONTROL, VK_A) // Select all text
111111
key(VK_DELETE) // Delete selected text
112-
enterText(tempProjectDir.absolutePath)
112+
enterText(tempProjectDir.absolutePath.toString().replace("\\", "\\\\"))
113113
}
114114

115115
button("OK").click()

0 commit comments

Comments
 (0)