summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-11-22 17:17:02 +0900
committerCaolán McNamara <caolanm@redhat.com>2014-11-26 12:56:54 +0000
commit465a4b2be8ed4c1f6d0d9995cd8d4c00ce7ae8bd (patch)
tree6d2e3a9f29bec24237dbaebca8e506394a101f94 /starmath
parentede5d170ea25c7983ed890075d9d5479aaa08d88 (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')
-rw-r--r--starmath/qa/cppunit/test_nodetotextvisitors.cxx4
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;
}