Update test name to match changes made in r218783
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 1 Oct 2014 21:19:39 +0000 (21:19 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 1 Oct 2014 21:19:39 +0000 (21:19 +0000)
Addressing post commit review feedback from Justin Bogner.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218821 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/OptionalTest.cpp

index 3ede81cfacca820358e2901256af7b8057e3a119..cadadced1397218d7a3561d252489347347be347 100644 (file)
@@ -346,7 +346,7 @@ private:
 unsigned Immovable::Constructions = 0;
 unsigned Immovable::Destructions = 0;
 
-TEST_F(OptionalTest, MoveOnlyEmplace) {
+TEST_F(OptionalTest, ImmovableEmplace) {
   Optional<Immovable> A;
   Immovable::ResetCounts();
   A.emplace(4);