From 5d840ef3132d847d49c36ca63f80f2fca5f9e2a8 Mon Sep 17 00:00:00 2001 From: Jason Tedor <jason@tedor.me> Date: Thu, 10 Aug 2017 11:33:14 +0900 Subject: [PATCH] Elasticsearch 5: Fix Javadocs in REST client tests The comments were incorrectly referring to ElasticsearchClient but they should be referring to ElasticsearchRestClient instead. --- .../db/elasticsearch5/ElasticsearchRestClientIT.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/elasticsearch5/src/test/java/com/yahoo/ycsb/db/elasticsearch5/ElasticsearchRestClientIT.java b/elasticsearch5/src/test/java/com/yahoo/ycsb/db/elasticsearch5/ElasticsearchRestClientIT.java index 5b833c14..1173b022 100644 --- a/elasticsearch5/src/test/java/com/yahoo/ycsb/db/elasticsearch5/ElasticsearchRestClientIT.java +++ b/elasticsearch5/src/test/java/com/yahoo/ycsb/db/elasticsearch5/ElasticsearchRestClientIT.java @@ -63,7 +63,7 @@ public class ElasticsearchRestClientIT { } /** - * Test of insert method, of class ElasticsearchClient. + * Test of insert method, of class {@link ElasticsearchRestClient}. */ @Test public void testInsert() { @@ -72,7 +72,7 @@ public class ElasticsearchRestClientIT { } /** - * Test of delete method, of class ElasticsearchClient. + * Test of delete method, of class {@link ElasticsearchRestClient}. */ @Test public void testDelete() { @@ -81,7 +81,7 @@ public class ElasticsearchRestClientIT { } /** - * Test of read method, of class ElasticsearchClient. + * Test of read method, of class {@link ElasticsearchRestClient}. */ @Test public void testRead() { @@ -92,7 +92,7 @@ public class ElasticsearchRestClientIT { } /** - * Test of update method, of class ElasticsearchClient. + * Test of update method, of class {@link ElasticsearchRestClient}. */ @Test public void testUpdate() { @@ -117,7 +117,7 @@ public class ElasticsearchRestClientIT { } /** - * Test of scan method, of class ElasticsearchClient. + * Test of scan method, of class {@link ElasticsearchRestClient}. */ @Test public void testScan() { -- GitLab