Namespace rename from UpperCamelCase to snake_case
[folly.git] / folly / test / FixedStringTest.cpp
index 3245aaa4aa2dd6d2acb2275b128e4b6824cb5356..c0b019bef6f6dacfd5e3a781dd1de9d8b3478aa4 100644 (file)
@@ -21,7 +21,7 @@
 #include <folly/portability/GTest.h>
 
 #define FS(x) ::folly::makeFixedString(x)
-using namespace folly::StringLiterals;
+using namespace folly::string_literals;
 
 TEST(FixedStringExamples, Examples) {
   // Example from the docs:
@@ -117,7 +117,7 @@ TEST(FixedStringCtorTest, FromInitializerList) {
 }
 
 TEST(FixedStringCtorTest, FromUDL) {
-  using namespace folly::Literals;
+  using namespace folly::literals;
 #if defined(__GNUC__)
   constexpr auto x = "hello"_fs;
   static_assert(