CppunitTest_sw_uiwriter: reset the redline author after using it

See http://document-foundation-mail-archive.969070.n3.nabble.com/CppunitTest-different-results-depending-on-execution-command-td4283987.html

Change-Id: I16f07232611d3d2cec675f34f0f93aee9618d80f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99585
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli 2020-07-28 11:43:26 +02:00
parent 70b81e74d2
commit 720b3c133c

View file

@ -5519,6 +5519,10 @@ void SwUiWriterTest::testRedlineViewAuthor()
uno::Reference<beans::XPropertySet> xField(xFields->nextElement(), uno::UNO_QUERY);
// This was 'Unknown Author' instead of 'A U. Thor'.
CPPUNIT_ASSERT_EQUAL(aAuthor, xField->getPropertyValue("Author").get<OUString>());
//Reset the redline author after using it, otherwise, it might interfere with other unittests
pView->SetRedlineAuthor("Unknown Author");
pDocShell->SetView(pView);
}
void SwUiWriterTest::testTdf91292()