Use the GTest portability header in shell_test
authorChristopher Dykes <cdykes@fb.com>
Sat, 19 Nov 2016 02:35:02 +0000 (18:35 -0800)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Sat, 19 Nov 2016 02:38:37 +0000 (18:38 -0800)
Summary: It was including gtest directly, making MSVC unhappy.

Reviewed By: yfeldblum

Differential Revision: D4208744

fbshipit-source-id: 7100058f3c9fde38744888c99e927c610f11d013

folly/test/ShellTest.cpp

index 00ddc043a5bab35686b3026db02f127e054b5cb2..781b1e61b0ed3adeada02483a936a584074cf6df 100644 (file)
@@ -15,9 +15,9 @@
  */
 
 #include <glog/logging.h>
-#include <gtest/gtest.h>
 
 #include <folly/Shell.h>
+#include <folly/portability/GTest.h>
 
 using namespace folly;