THRIFT-270: change cpp namespaces from facebook::thrift to apache::thrift
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@739644 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/ReflectionTest.cpp b/test/ReflectionTest.cpp
index d60b52c..c670c82 100644
--- a/test/ReflectionTest.cpp
+++ b/test/ReflectionTest.cpp
@@ -7,13 +7,13 @@
using std::cout;
using std::endl;
- facebook::thrift::reflection::limited::Service srv1;
+ apache::thrift::reflection::limited::Service srv1;
thrift::test::debug::PartiallyReflectableIf::getStaticLimitedReflection(srv1);
- cout << facebook::thrift::ThriftDebugString(srv1) << endl << endl;
+ cout << apache::thrift::ThriftDebugString(srv1) << endl << endl;
- facebook::thrift::reflection::limited::Service srv2;
+ apache::thrift::reflection::limited::Service srv2;
test::stress::ServiceIf::getStaticLimitedReflection(srv2);
- cout << facebook::thrift::ThriftDebugString(srv2) << endl << endl;
+ cout << apache::thrift::ThriftDebugString(srv2) << endl << endl;
return 0;
}