From 30d16c207787fe37ef7eb5b366cb0a4adea6783e Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Wed, 30 Sep 2020 20:57:57 -0400 Subject: [PATCH] Add Thad/Owen's test --- .../com/google/refine/expr/functions/arrays/UniquesTests.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/tests/server/src/com/google/refine/expr/functions/arrays/UniquesTests.java b/main/tests/server/src/com/google/refine/expr/functions/arrays/UniquesTests.java index 2c9417439..fcb38ce86 100644 --- a/main/tests/server/src/com/google/refine/expr/functions/arrays/UniquesTests.java +++ b/main/tests/server/src/com/google/refine/expr/functions/arrays/UniquesTests.java @@ -61,6 +61,9 @@ public class UniquesTests extends RefineTest { String[] test4 = {"[toDate(2020), '2018-03-02'.toDate(), toDate(2020)].uniques().toString()", "[2020-01-01T00:00Z, 2018-03-02T00:00Z]"}; parseEval(bindings, test4); + + String[] test5 = {"[null,null,null].uniques().toString()", "[null]"}; + parseEval(bindings, test5); } @Test