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")); } }