]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/test/test_str_list.cc
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / test / test_str_list.cc
index cb2536dd7378cc8752e578c9801f88731cb7b396..363395011e983f61b0e22365f3b157dd680220d5 100644 (file)
@@ -7,8 +7,7 @@
 
 // SplitTest is parameterized for list/vector/set
 using Types = ::testing::Types<std::list<std::string>,
-                               std::vector<std::string>,
-                               std::set<std::string>>;
+                               std::vector<std::string>>;
 
 template <typename T>
 struct SplitTest : ::testing::Test {
@@ -20,10 +19,6 @@ struct SplitTest : ::testing::Test {
             const std::vector<std::string>& expected) {
     EXPECT_EQ(expected, get_str_vec(input, delim));
   }
-  void test(const char* input, const char *delim,
-            const std::set<std::string>& expected) {
-    EXPECT_EQ(expected, get_str_set(input, delim));
-  }
 };
 
 TYPED_TEST_SUITE(SplitTest, Types);