summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/attribute
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-05-12 12:33:51 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-05-12 12:33:51 +0000
commitcb56028ba8f8ee7a1cc5684afe06588057683816 (patch)
tree60b3b5056f3a729a263d5543e9f121914dc22b25 /searchcore/src/tests/proton/attribute
parente4ac6dca94b738073256c2590893aef46579edda (diff)
Adjust attribute manager flush target names, e.g. for attribute a1:
attribute.a1 => attribute.flush.a1 attributeshrink.a1 => attribute.shrink.a1
Diffstat (limited to 'searchcore/src/tests/proton/attribute')
-rw-r--r--searchcore/src/tests/proton/attribute/attribute_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/tests/proton/attribute/attribute_test.cpp b/searchcore/src/tests/proton/attribute/attribute_test.cpp
index 21761d412a2..b0752e82c56 100644
--- a/searchcore/src/tests/proton/attribute/attribute_test.cpp
+++ b/searchcore/src/tests/proton/attribute/attribute_test.cpp
@@ -553,8 +553,8 @@ TEST_F("require that filter attribute manager can filter attributes", FilterFixt
EXPECT_EQUAL("a2", attrs[0]->getName());
searchcorespi::IFlushTarget::List targets = f._filterMgr.getFlushTargets();
EXPECT_EQUAL(2u, targets.size());
- EXPECT_EQUAL("attribute.a2", targets[0]->getName());
- EXPECT_EQUAL("attributeshrink.a2", targets[1]->getName());
+ EXPECT_EQUAL("attribute.flush.a2", targets[0]->getName());
+ EXPECT_EQUAL("attribute.shrink.a2", targets[1]->getName());
}
TEST_F("require that filter attribute manager can return flushed serial number", FilterFixture)