Skip to content

Commit bb0faa5

Browse files
committed
Remove redundant type check for std::vector<int> in GetNamespaceTest.
1 parent 262ab34 commit bb0faa5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

modules/core/performance/tests/perf_tests.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,8 +264,6 @@ TYPED_TEST_NOLINT(GetNamespaceTest, ExtractsNamespaceCorrectly) {
264264
EXPECT_EQ(kNs, "my");
265265
} else if constexpr (std::is_same_v<TypeParam, int>) {
266266
EXPECT_EQ(kNs, "");
267-
} else if constexpr (std::is_same_v<TypeParam, std::vector<int>>) {
268-
EXPECT_EQ(kNs, "std");
269267
} else {
270268
FAIL() << "Unhandled type in test";
271269
}

0 commit comments

Comments
 (0)