diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-11-22 17:17:02 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-26 12:56:54 +0000 |
commit | 465a4b2be8ed4c1f6d0d9995cd8d4c00ce7ae8bd (patch) | |
tree | 6d2e3a9f29bec24237dbaebca8e506394a101f94 /starmath/qa | |
parent | ede5d170ea25c7983ed890075d9d5479aaa08d88 (diff) |
Correct and reenable SmNodeToTextVisitor's test for RSUP
See 44a3a345ac2b9901122a9eac70538ef04417bbd4 about why ^ is chosen.
Change-Id: I05cda4d69eaa1757a95c06c199e09d9c67f47832
Reviewed-on: https://gerrit.libreoffice.org/13037
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'starmath/qa')
-rw-r--r-- | starmath/qa/cppunit/test_nodetotextvisitors.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/qa/cppunit/test_nodetotextvisitors.cxx b/starmath/qa/cppunit/test_nodetotextvisitors.cxx index 6940f194bfd7..b62212d3eaab 100644 --- a/starmath/qa/cppunit/test_nodetotextvisitors.cxx +++ b/starmath/qa/cppunit/test_nodetotextvisitors.cxx @@ -573,8 +573,8 @@ void Test::testBinHorInSubSup() aCursor.InsertElement(PlusElement); aCursor.InsertText("d"); -//FIXME OUString sExpected = " { a rsup { b + c } + d } "; -//FIXME CPPUNIT_ASSERT_EQUAL_MESSAGE("BinHor in SubSup", sExpected, xDocShRef->GetText()); + OUString sExpected = " { a ^ { b + c } + d } "; + CPPUNIT_ASSERT_EQUAL_MESSAGE("BinHor in SubSup", sExpected, xDocShRef->GetText()); delete pTree; } |