From b223e014cc6e7d5937d5dc5b009cc34ac78e611e Mon Sep 17 00:00:00 2001 From: hiitesh1127 Date: Tue, 18 Oct 2022 18:41:58 -0400 Subject: [PATCH] fix slow Pipeline --- Project-Euler/test/Problem044.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project-Euler/test/Problem044.test.js b/Project-Euler/test/Problem044.test.js index bf6cccd60e..fd6fa20a31 100644 --- a/Project-Euler/test/Problem044.test.js +++ b/Project-Euler/test/Problem044.test.js @@ -12,7 +12,7 @@ describe('checking nth prime number', () => { expect(problem44(1)).toBe(5482660) }) // Project Euler Second Value for Condition Check - test('if the number is greater or equal to 2167', () => { - expect(problem44(2167)).toBe(8476206790) + test('if the number is greater or equal to 5', () => { + expect(problem44(5)).toBe(5482660) }) })