fix a multiline comment warning
[folly.git] / folly / test / MoveWrapperTest.cpp
index b5a21c7eb8efae4f95eb46b41e226deeccae9830..305a3774666363b4d025c176c7301055b2343cf8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Facebook, Inc.
+ * Copyright 2013-present Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  */
 
-#include <gtest/gtest.h>
-
 #include <folly/MoveWrapper.h>
+
 #include <memory>
 
+#include <folly/portability/GTest.h>
+
 namespace folly {
 
 TEST(makeMoveWrapper, Empty) {
@@ -27,7 +28,7 @@ TEST(makeMoveWrapper, Empty) {
 }
 
 TEST(makeMoveWrapper, NonEmpty) {
-  auto u = std::unique_ptr<int>(new int(5));
+  auto u = std::make_unique<int>(5);
   EXPECT_EQ(*u, 5);
   auto p = makeMoveWrapper(std::move(u));
   EXPECT_TRUE(!u);
@@ -49,4 +50,4 @@ TEST(makeMoveWrapper, lvalue_copyable) {
   makeMoveWrapper(p);
 }
 
-} // namespace
+} // namespace folly