From fc64ae48ea42fd42b7514349ace5edbcd0f16c6d Mon Sep 17 00:00:00 2001 From: Jim Borden Date: Sat, 10 Mar 2018 12:44:48 +0900 Subject: [PATCH] Fix a test that is testing old behavior --- src/Couchbase.Lite.Tests.Shared/QueryTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Couchbase.Lite.Tests.Shared/QueryTest.cs b/src/Couchbase.Lite.Tests.Shared/QueryTest.cs index dedcd361c..5354e3bdd 100644 --- a/src/Couchbase.Lite.Tests.Shared/QueryTest.cs +++ b/src/Couchbase.Lite.Tests.Shared/QueryTest.cs @@ -1344,7 +1344,7 @@ public void TestLiveQueryBlocksClose() doc1Listener.WaitForResult(TimeSpan.FromSeconds(20)); otherDb.Invoking(d => d.Dispose()) - .ShouldThrow("because the live query is still active"); + .ShouldThrow("because the live query is still active"); } finally { query.RemoveChangeListener(token); query.Dispose();