From 79ec6988d6f96ebc7b33ae2cb1779c7d9c6c72f9 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Sun, 30 Dec 2018 22:22:50 +0100 Subject: [PATCH] Fix GetCLusteringFunctionANdDistancesCommandTest --- .../browsing/GetClusteringFunctionsAndDistancesCommandTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/tests/server/src/com/google/refine/tests/commands/browsing/GetClusteringFunctionsAndDistancesCommandTest.java b/main/tests/server/src/com/google/refine/tests/commands/browsing/GetClusteringFunctionsAndDistancesCommandTest.java index c2ffc660a..9faa5bf05 100644 --- a/main/tests/server/src/com/google/refine/tests/commands/browsing/GetClusteringFunctionsAndDistancesCommandTest.java +++ b/main/tests/server/src/com/google/refine/tests/commands/browsing/GetClusteringFunctionsAndDistancesCommandTest.java @@ -74,7 +74,7 @@ public class GetClusteringFunctionsAndDistancesCommandTest { public void testGetFunctionsAndKeyers() throws ServletException, IOException { command.doGet(request, response); ObjectNode result = ParsingUtilities.mapper.readValue(writer.toString(), ObjectNode.class); - assertTrue(Arrays.asList(JSONUtilities.getStringArray(result, "keyers")).contains("metaphone")); + assertTrue(Arrays.asList(JSONUtilities.getStringArray(result, "keyers")).contains("metaphone3")); assertTrue(Arrays.asList(JSONUtilities.getStringArray(result, "distances")).contains("levenshtein")); } }