diff --git a/test/src/unit-pointer_access.cpp b/test/src/unit-pointer_access.cpp index 5f70780d..f3830e5d 100644 --- a/test/src/unit-pointer_access.cpp +++ b/test/src/unit-pointer_access.cpp @@ -257,11 +257,11 @@ TEST_CASE("pointer access") const test_type* p2 = value.get_ptr(); CHECK(p1 == value.get_ptr()); - //CHECK(*p2 == value.get()); + CHECK(*p2 == value.get()); const test_type* const p3 = value.get_ptr(); CHECK(p1 == value.get_ptr()); - //CHECK(*p3 == value.get()); + CHECK(*p3 == value.get()); // check if null pointers are returned correctly CHECK(value.get_ptr() == nullptr);