#Paul Tchistopolskii wonders whether Saxon or XT has a bug from Xml.Xslt import test_harness sheet_1 = """ """ source_1 = """ A -1 0 """ expected_1 = """ -1 0 A """ saxon_output = """ -1 0 A """ #Note that all these sort orders are OK according to thhe spec's lenience xt_output = """ 0 -1 A """ def Test(tester): source = test_harness.FileInfo(string=source_1) sheet = test_harness.FileInfo(string=sheet_1) test_harness.XsltTest(tester, source, [sheet], expected_1) return