From d8769e5d9a7d759d33456239e42f66b5db91daed Mon Sep 17 00:00:00 2001 From: Smaug123 Date: Sat, 2 May 2020 13:04:19 +0100 Subject: [PATCH] Fix test --- Vector.Test/UnitTest1.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vector.Test/UnitTest1.fs b/Vector.Test/UnitTest1.fs index 6414771..45cd19a 100644 --- a/Vector.Test/UnitTest1.fs +++ b/Vector.Test/UnitTest1.fs @@ -19,7 +19,7 @@ module TestVector = v2 |> Vector.toList |> shouldEqual ["bye" ; "hi"] match Vector.empty with - | Empty () -> failwith "" + | Empty () -> () //| Vec (a, b) -> failwith "" -- doesn't compile match v1 with