Skip to content

Commit 596d78a

Browse files
committed
Fixed test with line ending issues on build server
1 parent f8b32b1 commit 596d78a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

TestStack.BDDfy.Tests/Configuration/StepExecutorTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ About to run step 'When something'
5353
Finished running step 'When something'
5454
About to run step 'Then something'
5555
Finished running step 'Then something'
56-
";
56+
".Replace("\r", string.Empty).Trim();
5757

58-
Assert.AreEqual(expected, testStepExecutor.Results);
58+
string actual = testStepExecutor.Results.Replace("\r", string.Empty).Trim();
59+
Assert.AreEqual(expected, actual);
5960

6061
}
6162
finally

0 commit comments

Comments
 (0)