We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4001b3 commit cf27369Copy full SHA for cf27369
test/PowerShellEditorServices.Test/Debugging/DebugServiceTests.cs
@@ -170,7 +170,7 @@ public async Task DebuggerAcceptsScriptArgs()
170
Assert.Single(breakpoints);
171
Assert.Collection(breakpoints, (breakpoint) =>
172
{
173
- Assert.Equal(debugWithParamsFile.FilePath, breakpoint.Source);
+ Assert.Equal(debugWithParamsFile.FilePath.ToLower(), breakpoint.Source.ToLower());
174
Assert.Equal(3, breakpoint.LineNumber);
175
Assert.True(breakpoint.Verified);
176
});
0 commit comments