Skip to content

Commit 8045d20

Browse files
committed
pointer NIT
1 parent 9ff887a commit 8045d20

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/path_matcher_test.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,12 @@ TEST_F(PathMatcherTest, WildCardMatchesRoot) {
193193

194194
TEST_F(PathMatcherTest, WildCardMatches) {
195195
// '*' only matches one path segment, but '**' matches the remaining path.
196-
MethodInfo *a__ = AddGetPath("/a/**");
197-
MethodInfo *b_ = AddGetPath("/b/*");
198-
MethodInfo *c_d__ = AddGetPath("/c/*/d/**");
199-
MethodInfo *c_de = AddGetPath("/c/*/d/e");
200-
MethodInfo *cfde = AddGetPath("/c/f/d/e");
201-
MethodInfo *root = AddGetPath("/");
196+
MethodInfo* a__ = AddGetPath("/a/**");
197+
MethodInfo* b_ = AddGetPath("/b/*");
198+
MethodInfo* c_d__ = AddGetPath("/c/*/d/**");
199+
MethodInfo* c_de = AddGetPath("/c/*/d/e");
200+
MethodInfo* cfde = AddGetPath("/c/f/d/e");
201+
MethodInfo* root = AddGetPath("/");
202202
Build();
203203

204204
EXPECT_NE(nullptr, a__);

0 commit comments

Comments
 (0)