summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unotest/source/cpp/getargument.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotest/source/cpp/getargument.cxx b/unotest/source/cpp/getargument.cxx
index 5fca79af6016..4082883a5a67 100644
--- a/unotest/source/cpp/getargument.cxx
+++ b/unotest/source/cpp/getargument.cxx
@@ -31,7 +31,7 @@ namespace test {
namespace detail {
bool getArgument(OUString const & name, OUString * value) {
- OSL_ASSERT(value != nullptr);
+ assert(value != nullptr);
return rtl::Bootstrap::get("arg-" + name, *value);
}