Skip to content

Commit 2a1a694

Browse files
committed
Fix test: Should_return_OK_status_and_multiline_indented_json_response_with_json_options_for_custom_builder
1 parent f66b661 commit 2a1a694

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Ocelot.IntegrationTests/AdministrationTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ private void ThenTheResultHaveMultiLineIndentedJson()
884884
const string indent = " ";
885885
const int total = 46, skip = 1;
886886
var lines = _response.Content.ReadAsStringAsync().Result.Split(Environment.NewLine);
887-
lines.Length.ShouldBe(total);
887+
lines.Length.ShouldBeGreaterThanOrEqualTo(total);
888888
lines.First().ShouldNotStartWith(indent);
889889

890890
lines.Skip(skip).Take(total - skip - 1).ToList()

0 commit comments

Comments
 (0)