We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb7e7f commit 0f87b8dCopy full SHA for 0f87b8d
src/test/java/org/zendesk/client/v2/RealSmokeTest.java
@@ -1947,9 +1947,9 @@ public void getTicketCommentsDescending() throws Exception {
1947
assertThat(comments.size(), is(2));
1948
assertThat(comments.get(0).getBody(), containsString(TICKET_COMMENT2));
1949
assertThat(comments.get(0).getType(), is(CommentType.COMMENT));
1950
+ assertThat(comments.get(0).getVia(), is(VIA));
1951
assertThat(comments.get(1).getBody(), containsString(TICKET_COMMENT1));
1952
assertThat(comments.get(1).getType(), is(CommentType.COMMENT));
- assertThat(comments.get(1).getVia(), is(VIA));
1953
} finally {
1954
if (ticket != null) {
1955
instance.deleteTicket(ticket.getId());
0 commit comments