From f62c83ddbe6918c472f4d0d67c80dd7c9cf11948 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Wed, 12 Oct 2022 09:15:48 -0300 Subject: [PATCH] Rename function in text --- labs/L09/spec/loop-arith.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/L09/spec/loop-arith.spec.js b/labs/L09/spec/loop-arith.spec.js index 5315819..63f381a 100644 --- a/labs/L09/spec/loop-arith.spec.js +++ b/labs/L09/spec/loop-arith.spec.js @@ -4,11 +4,11 @@ describe("add", function() { it("1 + 1 = 2", function() { - expect(arith.add(1, 1)).toBe(2); + expect(arith.plus(1, 1)).toBe(2); }); it("0 + x = x", function() { - expect(arith.add(0, 1)).toBe(1); + expect(arith.plus(0, 1)).toBe(1); }); });