Skip to content

Commit 625906b

Browse files
committed
Update VirtualizedRunHelper.cs
1 parent c29f356 commit 625906b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Verify/VirtualizedRunHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ static string TryRemoveDirFromEndOfPath(string path)
255255
return path;
256256
}
257257

258-
private static string CombinePaths(string path1, string path2) =>
258+
static string CombinePaths(string path1, string path2) =>
259259
$"{path1.TrimEnd(separators)}{Env.DirectorySeparatorChar}{path2.Replace(OtherDirectorySeparatorChar, Env.DirectorySeparatorChar)}";
260260

261-
private static char OtherDirectorySeparatorChar => Env.DirectorySeparatorChar == '/' ? '\\' : '/';
261+
static char OtherDirectorySeparatorChar => Env.DirectorySeparatorChar == '/' ? '\\' : '/';
262262
}

0 commit comments

Comments
 (0)