summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-09 15:11:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-09 15:11:17 +0100
commitfe2e43280fc2007dcc819285270b2437ba56b8e3 (patch)
tree0b20dbdd37c7a5d2c6a1eab293cefe8b61e1c8a2 /test/source
parent43caf4fe9babdd68853df3cc68a4ece8e4223b1a (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/source')
-rw-r--r--test/source/calc_unoapi_test.cxx2
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: */