From 620fe16ec48bf28d9296c95658173cfa632ca253 Mon Sep 17 00:00:00 2001 From: markharwood Date: Fri, 26 Jan 2018 14:44:02 +0000 Subject: [PATCH] [TEST] Remove unreliable scoring check on Graph API (elastic/x-pack-elasticsearch#918) Original commit: elastic/x-pack-elasticsearch@3ba1340c70f523d91e1e79573cdc6c4b213fd2a1 --- .../java/org/elasticsearch/xpack/graph/test/GraphTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin/graph/src/test/java/org/elasticsearch/xpack/graph/test/GraphTests.java b/plugin/graph/src/test/java/org/elasticsearch/xpack/graph/test/GraphTests.java index 7bf23c0a769..67e05fbee29 100644 --- a/plugin/graph/src/test/java/org/elasticsearch/xpack/graph/test/GraphTests.java +++ b/plugin/graph/src/test/java/org/elasticsearch/xpack/graph/test/GraphTests.java @@ -128,8 +128,6 @@ public class GraphTests extends ESSingleNodeTestCase { checkVertexDepth(response, 0, "john", "paul", "george", "ringo"); checkVertexDepth(response, 1, "stevie", "yoko", "roy"); - checkVertexIsMoreImportant(response, "John's only collaboration is more relevant than one of Paul's many", "yoko", "stevie"); - checkVertexIsMoreImportant(response, "John's only collaboration is more relevant than George's with profligate Roy", "yoko", "roy"); assertNull("Elvis is a 3rd tier connection so should not be returned here", response.getVertex(Vertex.createId("people","elvis"))); }