From 01056562d93de4695fba0553fb84d99ae4300f75 Mon Sep 17 00:00:00 2001 From: Garand Tyson Date: Mon, 28 Nov 2022 11:22:19 -0800 Subject: [PATCH] Fix bug in BucketList invariant test --- .../test/BucketListIsConsistentWithDatabaseTests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invariant/test/BucketListIsConsistentWithDatabaseTests.cpp b/src/invariant/test/BucketListIsConsistentWithDatabaseTests.cpp index 79348ff135..4f3d1c6aab 100644 --- a/src/invariant/test/BucketListIsConsistentWithDatabaseTests.cpp +++ b/src/invariant/test/BucketListIsConsistentWithDatabaseTests.cpp @@ -368,7 +368,7 @@ class ApplyBucketsWorkDeleteEntry : public ApplyBucketsWork mDeleted = true; } } - auto r = ApplyBucketsWork::onRun(); + auto r = ApplyBucketsWork::doWork(); if (r == State::WORK_SUCCESS) { REQUIRE(mDeleted); @@ -532,7 +532,7 @@ class ApplyBucketsWorkModifyEntry : public ApplyBucketsWork mModified = true; } } - auto r = ApplyBucketsWork::onRun(); + auto r = ApplyBucketsWork::doWork(); if (r == State::WORK_SUCCESS) { REQUIRE(mModified);