diff --git a/test/raven-integration/Locale/RequestedLocaleKeys.cs b/test/raven-integration/Locale/RequestedLocaleKeys.cs index 21104761..4d329f52 100644 --- a/test/raven-integration/Locale/RequestedLocaleKeys.cs +++ b/test/raven-integration/Locale/RequestedLocaleKeys.cs @@ -48,7 +48,7 @@ namespace raven_integration var RequestedKeyCount = a.ObjectResponse["result"]["requestedKeyCount"].Value(); RequestedKeyCount.Should().BeGreaterOrEqualTo(2); var NotRequestedKeyCount = a.ObjectResponse["result"]["notRequestedKeyCount"].Value(); - NotRequestedKeyCount.Should().BeGreaterThan(1);//For now at least, once we have this dialed in it should be zero ultimately + NotRequestedKeyCount.Should().BeGreaterThan(1);//For now at least, once we have this dialed in it will be zero ultimately //there should be dozens of keys but at times there might only be a few during development so at least verify there is more than one ((JArray)a.ObjectResponse["result"]["requestedKeys"]).Count.Should().Be(RequestedKeyCount);