Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion csharp/extractor/Semmle.Extraction.Tests/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System;
using System.IO;
using Semmle.Util;
using System.Text.RegularExpressions;

namespace Semmle.Extraction.Tests
{
Expand Down Expand Up @@ -197,7 +198,7 @@ public void ArchiveArguments()
{
File.AppendAllText(file, "Test");
new string[] { "/noconfig", "@" + file }.WriteCommandLine(sw);
Assert.Equal("Test\n", sw.ToString());
Assert.Equal("Test", Regex.Replace(sw.ToString(), @"\t|\n|\r", ""));
}
finally
{
Expand Down