diff options
-rw-r--r-- | clang/unittests/ASTMatchers/ASTMatchersTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp index f640dff16f6..32b14962521 100644 --- a/clang/unittests/ASTMatchers/ASTMatchersTest.cpp +++ b/clang/unittests/ASTMatchers/ASTMatchersTest.cpp @@ -1040,7 +1040,7 @@ TEST(Matcher, VariableUsage) { "}", Reference)); } -TEST(Matcher, FindsVarDeclInFuncitonParameter) { +TEST(Matcher, FindsVarDeclInFunctionParameter) { EXPECT_TRUE(matches( "void f(int i) {}", varDecl(hasName("i")))); |