From 177f843195cd4583c26b242009b1bb1912df296e Mon Sep 17 00:00:00 2001 From: Eric Lavault <39483232+lvlte@users.noreply.github.com> Date: Wed, 13 Oct 2021 11:49:10 +0200 Subject: [PATCH] Fix renamed variable after testing ! --- Project-Euler/test/Problem018.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project-Euler/test/Problem018.test.js b/Project-Euler/test/Problem018.test.js index cebb49ec4..a9b3f2109 100644 --- a/Project-Euler/test/Problem018.test.js +++ b/Project-Euler/test/Problem018.test.js @@ -9,7 +9,7 @@ const example = ` describe('Check Problem 18 - Maximum path sum I', () => { it('Check example', () => { - expect(maxPathSum(triangle)).toBe(23) + expect(maxPathSum(example)).toBe(23) }) it('Check solution', () => {