We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b32b1 commit 596d78aCopy full SHA for 596d78a
1 file changed
TestStack.BDDfy.Tests/Configuration/StepExecutorTests.cs
@@ -53,9 +53,10 @@ About to run step 'When something'
53
Finished running step 'When something'
54
About to run step 'Then something'
55
Finished running step 'Then something'
56
-";
+".Replace("\r", string.Empty).Trim();
57
58
- Assert.AreEqual(expected, testStepExecutor.Results);
+ string actual = testStepExecutor.Results.Replace("\r", string.Empty).Trim();
59
+ Assert.AreEqual(expected, actual);
60
61
}
62
finally
0 commit comments