From c9b486c17037c24c4af357019f9fec372849042f Mon Sep 17 00:00:00 2001 From: Grigorii Kirgizov Date: Tue, 28 May 2019 17:24:00 +0300 Subject: [PATCH] Fix StoreAwareJournal test given updated journal's iterator starting pos --- reactor/Test/test/TestStoreAwareJournal.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/reactor/Test/test/TestStoreAwareJournal.kt b/reactor/Test/test/TestStoreAwareJournal.kt index 76064a75..c910b181 100644 --- a/reactor/Test/test/TestStoreAwareJournal.kt +++ b/reactor/Test/test/TestStoreAwareJournal.kt @@ -398,6 +398,7 @@ class TestStoreAwareJournal { // walk by history, remove the third chunk (i.e. match of rule2a) // continue from the second chunk (match of rule1) val rmIt = iterator() + rmIt.next() // skip initial chunk val continueFrom = rmIt.next() rmIt.next() rmIt.remove()