clj-concordion
clj-concordion copied to clipboard
Unhelpful error upon unclosed ** in a table
An example including a table like this
| [ ][XXX][code][ft] | [Amount][amt] | Label |
| -------------------- | :------------- | :---------------------- - |
| BLFZ | 1.00 | **Varer og tjenester |
will fail with no stacktrace (despite fail-fast true
and little helpful error
ERROR in (Charges-test) (ExecuteCommandTableModification.java:57) Uncaught exception, not in assertion. expected: nil actual: java.lang.RuntimeException: The
'execute' command only supports rows with an equal number of columns. Detail row 2 has a different number of columns to the last header row
Can be fixed by escaping, i.e.
\*\*Varer...
.Make the error better.