diff --git a/modules/base/tests/test_table.py b/modules/base/tests/test_table.py index ec2e5fcf0d4f8190fc92b5a6c40d82cf9ed2165b..1d6c91d11484ecc776eb30413365cc4fad55adbe 100644 --- a/modules/base/tests/test_table.py +++ b/modules/base/tests/test_table.py @@ -931,7 +931,7 @@ class TestTable(unittest.TestCase): stream = io.StringIO() tab.Save(stream, format='context') self.assertEqual(stream.getvalue(), - '\\starttable[l|r|i3r|]\n\\HL\n\\NC \\bf first\\NC \\bf second\\NC \\bf third \\AR\\HL\n\\NC x\\NC 3\\NC --- \\AR\n\\NC foo\NC ---\NC 2.200 \\AR\n\\NC ---\\NC 9\\NC 3.300 \\AR\n\\HL\n\\stoptable') + '\\starttable[l|r|i3r|]\n\\HL\n\\NC \\bf first\\NC \\bf second\\NC \\bf third \\AR\\HL\n\\NC x\\NC 3\\NC --- \\AR\n\\NC foo\\NC ---\\NC 2.200 \\AR\n\\NC ---\\NC 9\\NC 3.300 \\AR\n\\HL\n\\stoptable') def testSaveLoadTableCSV(self): tab = self.CreateTestTable()