From fdf9035ef93112f59d93b19adca0a38b450492c2 Mon Sep 17 00:00:00 2001 From: Domenic Gosein <87760323+goseind@users.noreply.github.com> Date: Fri, 24 Nov 2023 17:49:33 +0000 Subject: [PATCH] correct error for ci testing --- kryptolearn/__tests__/algorithms.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kryptolearn/__tests__/algorithms.test.js b/kryptolearn/__tests__/algorithms.test.js index f633c03..2393fc6 100644 --- a/kryptolearn/__tests__/algorithms.test.js +++ b/kryptolearn/__tests__/algorithms.test.js @@ -11,7 +11,7 @@ test('calculate x = 371 and y = -25 for 456 and 6767', () => { }); test('calcualte product of mods 2,3,5,7 to be 210, 105, 70, 42, 30', () => { - expect(precrt([2,3,5,7]).bigM).toEqual([20, 105, 70, 42, 30]); + expect(precrt([2,3,5,7]).bigM).toEqual([210, 105, 70, 42, 30]); }); test('calculate crt of mods 2,3,5,7 and remainders 1,1,1,0 sum equal to 91', () => {