diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 07:43:20 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-05-07 07:43:20 +1000 |
commit | 4833bcba213c02737256b476b946350dcc9904da (patch) | |
tree | 024bca0bbeca3f0310a180c763bbf2a3301788b8 /unotest | |
parent | a2709d8aafb9376d7eed940846757e6ac573af1f (diff) |
tdf#43157: convert unotest from OSL_ASSERT to assert
Change-Id: I4fa580adfe9cc9a49824c5a4ef0f37c46b71a98d
Diffstat (limited to 'unotest')
-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 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); } |