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) }) })