Skip to content

Commit

Permalink
fix(tests): fix path on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Yorgos Saslis <[email protected]>
  • Loading branch information
gsaslis committed Jan 17, 2024
1 parent cd8e81f commit 462e148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void importProjectFromVCS(Path localDir) {
//create tmp dir to clone project to:
keyboard.selectAll();
keyboard.backspace();
keyboard.enterText(localDir.toAbsolutePath().toString(), 0);
keyboard.enterText(localDir.toAbsolutePath().toString().replaceAll("\\\\", "\\\\"), 0);


importProjectDialog.button("Clone").click();
Expand Down

0 comments on commit 462e148

Please sign in to comment.