Skip to content

Commit 37e1c3b

Browse files
authored
fixing path with spaces in unit test (#142)
1 parent bd67016 commit 37e1c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/TestAdapter/Executor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ private List<TestResult> RunTestOnEmulator(List<TestCase> tests)
596596
StringBuilder str = new StringBuilder();
597597
foreach (var pe in allPeFiles)
598598
{
599-
str.Append($" -load {Path.Combine(workingDirectory, pe)}");
599+
str.Append($" -load \"{Path.Combine(workingDirectory, pe)}\"");
600600
}
601601

602602
string parameter = str.ToString();

0 commit comments

Comments
 (0)