summaryrefslogtreecommitdiff
path: root/test/gtest/cfg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/gtest/cfg.cpp')
-rw-r--r--test/gtest/cfg.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/gtest/cfg.cpp b/test/gtest/cfg.cpp
index 7bf18ebdb..07b44e261 100644
--- a/test/gtest/cfg.cpp
+++ b/test/gtest/cfg.cpp
@@ -320,10 +320,9 @@ TEST_F(CFGTest, FinitePowersetLatticeFunctioning) {
auto element2 = element1;
lattice.remove(&element2, "c");
- EXPECT_EQ(FinitePowersetLattice<std::string>::compare(element1, element2),
- LatticeComparison::GREATER);
+ EXPECT_EQ(lattice.compare(element1, element2), LatticeComparison::GREATER);
lattice.add(&element2, "f");
- EXPECT_EQ(FinitePowersetLattice<std::string>::compare(element1, element2),
+ EXPECT_EQ(lattice.compare(element1, element2),
LatticeComparison::NO_RELATION);
std::stringstream ss;