summaryrefslogtreecommitdiff
path: root/test/cctest
diff options
context:
space:
mode:
authorMichael Dawson <michael_dawson@ca.ibm.com>2018-02-05 15:02:18 -0500
committerMichael Dawson <michael_dawson@ca.ibm.com>2018-02-08 18:43:36 -0500
commitfe442f6b5f9695ad6a11cec70f83b3f748e313a1 (patch)
tree5ee9a1a1aeb934c8582af192b7fe9d08b7670aae /test/cctest
parent6963a93d0ec7b0020f243f2d49eba889a869cbed (diff)
downloadandroid-node-v8-fe442f6b5f9695ad6a11cec70f83b3f748e313a1.tar.gz
android-node-v8-fe442f6b5f9695ad6a11cec70f83b3f748e313a1.tar.bz2
android-node-v8-fe442f6b5f9695ad6a11cec70f83b3f748e313a1.zip
test: properly tag anonymous namespaces
For tests that use anonymous namespaces, some tagged the close of the namespace with 'namespace' while others used 'anonymous namespace'. It was suggested I should use 'anonymous namespace' in a recent PR review so make all of the tests consistent with this. PR-URL: https://github.com/nodejs/node/pull/18583 Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/cctest')
-rw-r--r--test/cctest/test_inspector_socket_server.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cctest/test_inspector_socket_server.cc b/test/cctest/test_inspector_socket_server.cc
index 49a3ca9f95..9023ad43c1 100644
--- a/test/cctest/test_inspector_socket_server.cc
+++ b/test/cctest/test_inspector_socket_server.cc
@@ -398,7 +398,7 @@ static const std::string WsHandshakeRequest(const std::string& target_id) {
"Sec-WebSocket-Key: aaa==\r\n"
"Sec-WebSocket-Version: 13\r\n\r\n";
}
-} // namespace
+} // anonymous namespace
TEST_F(InspectorSocketServerTest, InspectorSessions) {