summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2018-09-14 15:04:30 +0200
committerTor Egge <Tor.Egge@broadpark.no>2018-09-14 15:04:30 +0200
commitdd3dbd9482b91d7a101a358458e010c19cdd9979 (patch)
tree545c0ea6323a52921371029c163cc463026e4be7 /searchcore/src/tests
parent64e7bb2d7c51deb181308aac7fd92675f2d29d1d (diff)
Remove remains of spooler code from searchcore.
Diffstat (limited to 'searchcore/src/tests')
-rw-r--r--searchcore/src/tests/proton/feedoperation/feedoperation_test.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/searchcore/src/tests/proton/feedoperation/feedoperation_test.cpp b/searchcore/src/tests/proton/feedoperation/feedoperation_test.cpp
index e87e9209a17..6a9dc42b56d 100644
--- a/searchcore/src/tests/proton/feedoperation/feedoperation_test.cpp
+++ b/searchcore/src/tests/proton/feedoperation/feedoperation_test.cpp
@@ -12,7 +12,6 @@
#include <vespa/searchcore/proton/feedoperation/putoperation.h>
#include <vespa/searchcore/proton/feedoperation/removeoperation.h>
#include <vespa/searchcore/proton/feedoperation/splitbucketoperation.h>
-#include <vespa/searchcore/proton/feedoperation/spoolerreplayoperation.h>
#include <vespa/searchcore/proton/feedoperation/updateoperation.h>
#include <vespa/searchcore/proton/feedoperation/wipehistoryoperation.h>
#include <vespa/searchlib/query/base.h>
@@ -212,17 +211,6 @@ TEST("require that toString() on derived classes are meaningful")
"target2=BucketId(0x000000000000002c), serialNum=0)",
SplitBucketOperation(bucket_id1, bucket_id2, bucket_id3)
.toString());
-
- EXPECT_EQUAL("SpoolerReplayStart(spoolerSerialNum=0, serialNum=0)",
- SpoolerReplayStartOperation().toString());
- EXPECT_EQUAL("SpoolerReplayStart(spoolerSerialNum=20, serialNum=10)",
- SpoolerReplayStartOperation(10, 20).toString());
-
- EXPECT_EQUAL("SpoolerReplayComplete(spoolerSerialNum=0, serialNum=0)",
- SpoolerReplayCompleteOperation().toString());
- EXPECT_EQUAL("SpoolerReplayComplete(spoolerSerialNum=2, serialNum=1)",
- SpoolerReplayCompleteOperation(1, 2).toString());
-
EXPECT_EQUAL("Update(NULL, BucketId(0x0000000000000000), timestamp=0, dbdId=(subDbId=0, lid=0), "
"prevDbdId=(subDbId=0, lid=0), prevMarkedAsRemoved=false, prevTimestamp=0, serialNum=0)",
UpdateOperation().toString());