Skip to content

Commit

Permalink
Remove debugging println from source (#2388)
Browse files Browse the repository at this point in the history
Signed-off-by: Dooyong Kim <[email protected]>
Co-authored-by: Dooyong Kim <[email protected]>
  • Loading branch information
0ctopus13prime and Dooyong Kim authored Jan 14, 2025
1 parent 7991350 commit 2f021dd
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/testFixtures/java/org/opensearch/knn/KNNRestTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -1398,11 +1398,6 @@ public void validateKNNSearch(String testIndex, String testField, int dimension,
);

List<KNNResult> results = parseSearchResponse(EntityUtils.toString(searchResponse.getEntity()), testField);
// TMP
for (KNNResult r : results) {
System.out.println("+++++++++++++++++++ id:" + r.getDocId() + ", score=" + r.getScore());
}
// TMP

assertEquals(k, results.size());
for (int i = 0; i < k; i++) {
Expand Down

0 comments on commit 2f021dd

Please sign in to comment.