Skip to content

Commit

Permalink
Made changes to Integration Test
Browse files Browse the repository at this point in the history
Signed-off-by: GabeFernandez310 <gabrielf@bitquilltech.com>
  • Loading branch information
GabeFernandez310 committed Nov 18, 2022
1 parent 59f8ea6 commit 2774e66
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void test_alternate_syntax_for_match_phrase_returns_same_result() throws
JSONObject result1 = executeJdbcRequest(String.format(query1, TEST_INDEX_PHRASE));
JSONObject result2 = executeJdbcRequest(String.format(query2, TEST_INDEX_PHRASE));
JSONObject result3 = executeJdbcRequest(String.format(query3, TEST_INDEX_PHRASE));
assertEquals(result1.toString(), result2.toString());
assertEquals(result1.toString(), result3.toString());
assertEquals(result1, result2);
assertEquals(result1, result3);
}
}

0 comments on commit 2774e66

Please sign in to comment.