From 8fcfe97e11510f5d552ef2ddbffbb0063e260e16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Traunm=C3=BCller?= Date: Sat, 30 Nov 2019 15:33:20 +0100 Subject: [PATCH] Fix test that was checking numerator instead of denominator (#2160) * Test was checking numerator instead of denominator * fixed a typo --- test/katex-spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/katex-spec.js b/test/katex-spec.js index 953d7796..7f474eb4 100644 --- a/test/katex-spec.js +++ b/test/katex-spec.js @@ -582,10 +582,10 @@ describe("An over/brace/brack parser", function() { expect(numer.body).toHaveLength(4); }); - it("should create a demonimator from the atoms after \\over", function() { + it("should create a denominator from the atoms after \\over", function() { const parse = getParsed(complexOver)[0]; - const denom = parse.numer; + const denom = parse.denom; expect(denom.body).toHaveLength(4); });