-
Notifications
You must be signed in to change notification settings - Fork 233
Tests cleanup after AllPackage removal. #1120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
dpvc
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. One question about backslashes, but not critical.
| `<math xmlns=\"http://www.w3.org/1998/Math/MathML\" data-latex=\"\\begin{prooftree}\\AxiomC{A}\\LeftLabel{L}\\UnaryInfC{B}\\end{prooftree}\" display=\"block\"> | ||
| <mrow data-latex=\"\\begin{prooftree}\\AxiomC{A}\\LeftLabel{L}\\UnaryInfC{B}\\end{prooftree}\" data-latex-item=\"{prooftree}\" semantics=\"bspr_labelledRule:left;bspr_inference:1;bspr_proof:true\"> | ||
| <mpadded height=\".25em\" depth=\"+.25em\" width=\"+.5ex\" voffset=\"-.25em\" semantics=\"bspr_prooflabel:left\"> | ||
| <mstyle displaystyle=\"false\" scriptlevel=\"0\"> | ||
| <mtext>L</mtext> | ||
| </mstyle> | ||
| </mpadded> | ||
| <mtable align=\"top 2\" rowlines=\"solid\" framespacing=\"0 0\" semantics=\"bspr_inferenceRule:down\"> | ||
| <mtr> | ||
| <mtd> | ||
| <mtable framespacing=\"0 0\"> | ||
| <mtr> | ||
| <mtd rowalign=\"bottom\"> | ||
| <mrow data-latex=\"\\LeftLabel{L}\" semantics=\"bspr_axiom:true\"> | ||
| <mspace width=\".5ex\"></mspace> | ||
| <mstyle displaystyle=\"false\" scriptlevel=\"0\"> | ||
| <mtext>A</mtext> | ||
| </mstyle> | ||
| <mspace width=\".5ex\"></mspace> | ||
| </mrow> | ||
| </mtd> | ||
| </mtr> | ||
| </mtable> | ||
| </mtd> | ||
| </mtr> | ||
| <mtr> | ||
| <mtd> | ||
| <mrow> | ||
| <mspace width=\".5ex\"></mspace> | ||
| <mstyle displaystyle=\"false\" scriptlevel=\"0\"> | ||
| <mtext>B</mtext> | ||
| </mstyle> | ||
| <mspace width=\".5ex\"></mspace> | ||
| </mrow> | ||
| </mtd> | ||
| </mtr> | ||
| </mtable> | ||
| </mrow> | ||
| </math>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are all the backslashes needed for the quotation marks? I guess they don't hurt, but they make the expected output a little harder to read.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That comes from the little Emacs function that allows for copying received values from the test log.
And they actually do hurt, at least in the last three tests, where I had to manually copy things over from the test output as the slashed quotes ruined the tests.
I'll remove them and then merge.
PR updates tests to work again after PR #1110 and #1115