[TEST] Remove unreliable scoring check on Graph API (elastic/x-pack-elasticsearch#918)

Original commit: elastic/x-pack-elasticsearch@3ba1340c70
This commit is contained in:
markharwood 2018-01-26 14:44:02 +00:00
parent 49ecd23eb9
commit 620fe16ec4
1 changed files with 0 additions and 2 deletions

View File

@ -128,8 +128,6 @@ public class GraphTests extends ESSingleNodeTestCase {
checkVertexDepth(response, 0, "john", "paul", "george", "ringo"); checkVertexDepth(response, 0, "john", "paul", "george", "ringo");
checkVertexDepth(response, 1, "stevie", "yoko", "roy"); 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"))); assertNull("Elvis is a 3rd tier connection so should not be returned here", response.getVertex(Vertex.createId("people","elvis")));
} }