diff options
author | Hal Finkel <hfinkel@anl.gov> | 2013-01-28 04:37:38 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2013-01-28 04:37:38 +0000 |
commit | b8d2441144557c1b20b89b524d7ac54dbfaac0db (patch) | |
tree | 75effdaee3e7289812e60f53abf3f40d892403ac /unittests/Tooling/ToolingTest.cpp | |
parent | 43bb45d152b14e186689e159ac9be2e27787d5ac (diff) |
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
Diffstat (limited to 'unittests/Tooling/ToolingTest.cpp')
-rw-r--r-- | unittests/Tooling/ToolingTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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, |