Fix linefeed test (#964)

I must have been asleep when I wrote the tests for PR#949.
This commit is contained in:
Ron Kok
2017-11-12 17:34:22 -08:00
committed by Kevin Barabash
parent d969322dd2
commit 839f872faa

View File

@@ -2415,7 +2415,7 @@ describe("An aligned environment", function() {
});
it("should not eat the last row when its first cell is empty", function() {
const ae = getParsed("\\begin{aligned}&E_1 & (1)\\\\&E_2 & (2)\\\\E_3 & (3)\\end{aligned}")[0];
const ae = getParsed("\\begin{aligned}&E_1 & (1)\\\\&E_2 & (2)\\\\&E_3 & (3)\\end{aligned}")[0];
expect(ae.value.body.length).toBe(3);
});
});