Skip to content

Commit

Permalink
fix test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-024 committed Dec 18, 2024
1 parent 2bd9793 commit e82c9bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void listDatabaseResponseParseTest() throws Exception {
ListDatabasesResponse parseData =
mapper.readValue(responseStr, ListDatabasesResponse.class);
assertEquals(response.getDatabases().size(), parseData.getDatabases().size());
assertEquals(name, parseData.getDatabases().get(0).getName());
assertEquals(name, parseData.getDatabases().get(0));
}

@Test
Expand Down

0 comments on commit e82c9bd

Please sign in to comment.