diff options
author | Eike Rathke <erack@redhat.com> | 2017-02-21 23:14:06 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2017-02-21 23:14:34 +0100 |
commit | 50d9da073d34ea6a223d39538ec37a646f8d276e (patch) | |
tree | dd3d1f6785cc448a9d04cff68bc9aeeb69d23dfa | |
parent | 6bf75f3d805fd97fb38f2d29158f10245035c2fa (diff) |
do not test for different caption pointers ...
... if it's not guaranteed they may not be identical.
Change-Id: Ieb4b0eb07a1b1832df65dde3c2e5a92b5121a162
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 37036963fd11..f2a01963d8d0 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -5376,7 +5376,9 @@ void Test::testNoteLifeCycle() CPPUNIT_ASSERT_MESSAGE("Failed to paste cell comment at B5.", pNoteB5); const SdrCaptionObj* pCaptionB5 = pNoteB5->GetOrCreateCaption(aPosB5); CPPUNIT_ASSERT_MESSAGE("No caption at pasted B5.", pCaptionB5); - CPPUNIT_ASSERT_MESSAGE("Captions not different after Paste.", pCaptionB5 != pOtherCaptionB5); + // Do not test if pCaptionB5 != pOtherCaptionB5 because since pDoc2 + // has been closed and the caption been deleted objects *may* be + // allocated at the very same memory location. } m_pDoc->DeleteTab(0); |