Skip to content

Commit

Permalink
Fix test runner diff output. Closes #25.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrunwald committed Feb 21, 2011
1 parent d758ba1 commit 64b116c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICSharpCode.Decompiler/Tests/TestRunner.cs
Expand Up @@ -72,7 +72,7 @@ static bool Compare(string input1, string input2, StringWriter diff)
}
while ((line2 = r2.ReadLine()) != null) {
ok = false;
diff.WriteLine("+" + line1);
diff.WriteLine("+" + line2);
}
return ok;
}
Expand Down

0 comments on commit 64b116c

Please sign in to comment.