diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-31 22:21:25 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-05-31 22:21:25 +0200 |
commit | 5a9b508279b3a221d36149aa2e811a9702b28e60 (patch) | |
tree | edffb2b9abcbd81f1457b793077a75fec6e389e8 /src/test | |
parent | 4c924011f535c46b3bc02bef8b7e2a8ad559d78d (diff) |
[trivial] Add end of namespace comments
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/coins_tests.cpp | 2 | ||||
-rw-r--r-- | src/test/script_tests.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/coins_tests.cpp b/src/test/coins_tests.cpp index 31ed1a50b9..850b983c45 100644 --- a/src/test/coins_tests.cpp +++ b/src/test/coins_tests.cpp @@ -88,7 +88,7 @@ public: size_t& usage() { return cachedCoinsUsage; } }; -} +} // namespace BOOST_FIXTURE_TEST_SUITE(coins_tests, BasicTestingSetup) diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index 343c645cb1..7601034791 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -468,7 +468,7 @@ std::string JSONPrettyPrint(const UniValue& univalue) } return ret; } -} +} // namespace BOOST_AUTO_TEST_CASE(script_build) { |