From: Hal Finkel Date: Mon, 28 Jan 2013 04:37:38 +0000 (+0000) Subject: Fix a typo in the name of a tooling unit test X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8d2441144557c1b20b89b524d7ac54dbfaac0db;p=clang Fix a typo in the name of a tooling unit test git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173658 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Tooling/ToolingTest.cpp b/unittests/Tooling/ToolingTest.cpp index a077c58f9f..a9319f2961 100644 --- a/unittests/Tooling/ToolingTest.cpp +++ b/unittests/Tooling/ToolingTest.cpp @@ -179,7 +179,7 @@ struct SkipBodyAction : public clang::ASTFrontendAction { } }; -TEST(runToolOnCode, TestSkipFunctionBoddy) { +TEST(runToolOnCode, TestSkipFunctionBody) { EXPECT_TRUE(runToolOnCode(new SkipBodyAction, "int skipMe() { an_error_here }")); EXPECT_FALSE(runToolOnCode(new SkipBodyAction,