diff options
Diffstat (limited to '')
-rw-r--r-- | test/handle.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/handle.cpp b/test/handle.cpp index 32b5bc1..13551f4 100644 --- a/test/handle.cpp +++ b/test/handle.cpp @@ -12,13 +12,9 @@ BOOST_AUTO_TEST_SUITE(handle_tests) BOOST_AUTO_TEST_CASE(null) { - { - winapi::Handle h{NULL}; - } + { winapi::Handle h{NULL}; } BOOST_TEST(true, "NULL handle closed successfully"); - { - winapi::Handle h{INVALID_HANDLE_VALUE}; - } + { winapi::Handle h{INVALID_HANDLE_VALUE}; } BOOST_TEST(true, "INVALID_HANDLE_VALUE handle closed successfully"); } |