From df075b4d683b23fd5b29b83be8c5c50ef7a1e7f3 Mon Sep 17 00:00:00 2001 From: Roman Galochkin Date: Fri, 3 Apr 2020 14:08:32 +0300 Subject: [PATCH] Moves code into Science module --- __tests__/Bandwidth__Test.re | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/Bandwidth__Test.re b/__tests__/Bandwidth__Test.re index 9c84e7a4..013402fa 100644 --- a/__tests__/Bandwidth__Test.re +++ b/__tests__/Bandwidth__Test.re @@ -2,11 +2,11 @@ open Jest; open Expect; describe("Bandwidth", () => { - test("nrd0 1", () => { + test("nrd0()", () => { let data = [|1., 4., 3., 2.|]; expect(Science.nrd0(data)) |> toEqual(0.7635139420854616); }); - test("nrd0 2", () => { + test("nrd()", () => { let data = [|1., 4., 3., 2.|]; expect(Science.nrd(data)) |> toEqual(0.899249754011766); });