diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-07-13 14:07:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-07-13 14:08:07 +0200 |
commit | e80df0d58ba32e3041ff9c8cdea9c617ea7e633b (patch) | |
tree | e4b4a44a629795d2b41e78f5a14d3b1c5babbfee /configmgr/qa | |
parent | 888f51c749bc504f12295433a747dd507723bb56 (diff) |
tdf#92639: Slashes are allowed in set member names, of course
Change-Id: I30944fe9611e83566c891a7d1461ad02979daddd
Diffstat (limited to 'configmgr/qa')
-rw-r--r-- | configmgr/qa/unit/test.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configmgr/qa/unit/test.cxx b/configmgr/qa/unit/test.cxx index 544a808e4832..a9f609bc3677 100644 --- a/configmgr/qa/unit/test.cxx +++ b/configmgr/qa/unit/test.cxx @@ -315,8 +315,9 @@ void Test::testInsertSetMember() { } catch (css::lang::IllegalArgumentException &) {} try { access->insertByName("a/b", css::uno::makeAny(member)); - CPPUNIT_FAIL("expected IllegalArgumentException"); - } catch (css::lang::IllegalArgumentException &) {} + } catch (css::lang::IllegalArgumentException &) { + CPPUNIT_FAIL("unexpected IllegalArgumentException"); + } css::uno::Reference<css::util::XChangesBatch>( access, css::uno::UNO_QUERY_THROW)->commitChanges(); css::uno::Reference<css::lang::XComponent>( |