Skip to content

Commit bf73143

Browse files
Fix asciidoc tests accordingly
1 parent 3fdc130 commit bf73143

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_output.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2101,7 +2101,7 @@ def test_asciidoc():
21012101
"Output: asciidoc with headers"
21022102
expected = "\n".join(
21032103
[
2104-
'[cols="11<,11>",options="header"]',
2104+
'[cols="<11,>11",options="header"]',
21052105
"|====",
21062106
"| strings | numbers ",
21072107
"| spam | 41.9999 ",
@@ -2117,7 +2117,7 @@ def test_asciidoc_headerless():
21172117
"Output: asciidoc without headers"
21182118
expected = "\n".join(
21192119
[
2120-
'[cols="6<,10>"]',
2120+
'[cols="<6,>10"]',
21212121
"|====",
21222122
"| spam | 41.9999 ",
21232123
"| eggs | 451 ",

0 commit comments

Comments
 (0)