Skip to content

Commit cf27369

Browse files
committed
WIP: Fix path casing issue on WIndows
1 parent a4001b3 commit cf27369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/PowerShellEditorServices.Test/Debugging/DebugServiceTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public async Task DebuggerAcceptsScriptArgs()
170170
Assert.Single(breakpoints);
171171
Assert.Collection(breakpoints, (breakpoint) =>
172172
{
173-
Assert.Equal(debugWithParamsFile.FilePath, breakpoint.Source);
173+
Assert.Equal(debugWithParamsFile.FilePath.ToLower(), breakpoint.Source.ToLower());
174174
Assert.Equal(3, breakpoint.LineNumber);
175175
Assert.True(breakpoint.Verified);
176176
});

0 commit comments

Comments
 (0)