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 18cf3c2 commit 0488b2cCopy full SHA for 0488b2c
src/test/java/org/zendesk/client/v2/RealSmokeTest.java
@@ -1918,8 +1918,10 @@ public void getTicketCommentsShouldBeAscending() throws Exception {
1918
assertThat(comments.size(), is(2));
1919
assertThat(comments.get(0).getBody(), containsString(TICKET_COMMENT1));
1920
assertThat(comments.get(0).getType(), is(CommentType.COMMENT));
1921
+ assertThat(comments.get(0).getVia(), is(VIA));
1922
assertThat(comments.get(1).getBody(), containsString(TICKET_COMMENT2));
1923
assertThat(comments.get(1).getType(), is(CommentType.COMMENT));
1924
+ assertThat(comments.get(1).getVia(), is(VIA));
1925
} finally {
1926
if (ticket != null) {
1927
instance.deleteTicket(ticket.getId());
0 commit comments