From 9cf46b84a85442be2660295e592f667e8e347094 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Thu, 10 Mar 2016 07:58:31 -0500 Subject: [PATCH] test: correct journal test failure caused by two merged commits Commit 21d9595 changed the journal width to 3 objects while commit a00eae0 changed the signature of the journal create helper. Signed-off-by: Jason Dillaman --- src/test/journal/test_JournalPlayer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/journal/test_JournalPlayer.cc b/src/test/journal/test_JournalPlayer.cc index e191876bfd525..3f992cbe586fd 100644 --- a/src/test/journal/test_JournalPlayer.cc +++ b/src/test/journal/test_JournalPlayer.cc @@ -240,7 +240,7 @@ TEST_F(TestJournalPlayer, PrefetchMultipleTags) { cls::journal::ObjectPosition(0, 234, 120)}; cls::journal::ObjectSetPosition commit_position(positions); - ASSERT_EQ(0, create(oid, 3)); + ASSERT_EQ(0, create(oid, 14, 3)); ASSERT_EQ(0, client_register(oid)); ASSERT_EQ(0, client_commit(oid, commit_position)); -- 2.39.5