This commit is contained in:
2018-09-28 18:14:36 +00:00
parent d1b6a7d747
commit 306d53d3d9

View File

@@ -451,7 +451,7 @@ namespace raven_integration
[Fact]
public async void BigDataSearchShouldBeRelativelyFast()
public async void BigDataSearchShouldHonourMaxResultsAndBeRelativelyFast()
{
//THIS test is a bit different in that it relies partly on the big dataset for testing
@@ -480,7 +480,7 @@ namespace raven_integration
//assert it's not unbounded
ResultCount.Should().BeLessOrEqualTo(1000);
//1755ms is the longest I've seen in initial testing so setting slightly above
//1755ms is the longest I've seen in initial testing with all 1000 results so setting slightly above
TimeToSearch.Should().BeLessThan(1760, "Big data search should not be too slow");
}//eot