From 09c3d86e41e61ca616b9affea16ff07c7a07e33f Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 18 Sep 2018 16:33:25 +0000 Subject: [PATCH] --- test/raven-integration/Locale/RequestedLocaleKeys.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);