diff options
-rw-r--r-- | unotest/source/cpp/getargument.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotest/source/cpp/getargument.cxx b/unotest/source/cpp/getargument.cxx index 22cd39fc5960..f9084c71a426 100644 --- a/unotest/source/cpp/getargument.cxx +++ b/unotest/source/cpp/getargument.cxx @@ -28,7 +28,7 @@ namespace test { bool getArgument(std::u16string_view name, OUString* value) { - OSL_ASSERT(value != nullptr); + assert(value); return rtl::Bootstrap::get(OUString::Concat("arg-") + name, *value); } } |