diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-09 15:11:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-09 15:11:17 +0100 |
commit | fe2e43280fc2007dcc819285270b2437ba56b8e3 (patch) | |
tree | 0b20dbdd37c7a5d2c6a1eab293cefe8b61e1c8a2 /test | |
parent | 43caf4fe9babdd68853df3cc68a4ece8e4223b1a (diff) |
Don't dispose twice in CalcUnoApiTest::tearDown
...i.e., skip UnoApiTest::tearDown's dispose of mxDesktop and go directly to
BootstrapFixture::tearDown.
Change-Id: If4555c812cb42c4b76a36d4e59c1d96211915dba
Diffstat (limited to 'test')
-rw-r--r-- | test/source/calc_unoapi_test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/calc_unoapi_test.cxx b/test/source/calc_unoapi_test.cxx index 8d7e218d9cda..f80e65961a1b 100644 --- a/test/source/calc_unoapi_test.cxx +++ b/test/source/calc_unoapi_test.cxx @@ -31,7 +31,7 @@ void CalcUnoApiTest::setUp() void CalcUnoApiTest::tearDown() { uno::Reference< lang::XComponent >( m_xCalcComponent, UNO_QUERY_THROW )->dispose(); - UnoApiTest::tearDown(); + test::BootstrapFixture::tearDown(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |