Skip to content

Commit 0488b2c

Browse files
author
Vvenediktov
committed
add missing Via to test
1 parent 18cf3c2 commit 0488b2c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/java/org/zendesk/client/v2/RealSmokeTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1918,8 +1918,10 @@ public void getTicketCommentsShouldBeAscending() throws Exception {
19181918
assertThat(comments.size(), is(2));
19191919
assertThat(comments.get(0).getBody(), containsString(TICKET_COMMENT1));
19201920
assertThat(comments.get(0).getType(), is(CommentType.COMMENT));
1921+
assertThat(comments.get(0).getVia(), is(VIA));
19211922
assertThat(comments.get(1).getBody(), containsString(TICKET_COMMENT2));
19221923
assertThat(comments.get(1).getType(), is(CommentType.COMMENT));
1924+
assertThat(comments.get(1).getVia(), is(VIA));
19231925
} finally {
19241926
if (ticket != null) {
19251927
instance.deleteTicket(ticket.getId());

0 commit comments

Comments
 (0)