Skip to content

Commit

Permalink
Run all the integration tests - 2022-08-11 PT
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Aug 12, 2022
1 parent 3c6da5a commit 1d8494c
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ public void dndEndSnooze() throws Exception {
assertThat(response.isOk(), is(false));
}
{
DndEndSnoozeResponse response = slack.methods().dndEndSnooze(r -> r
.token(userToken));
assertThat(response.getError(), is("snooze_not_active"));
assertThat(response.isOk(), is(false));
DndEndSnoozeResponse response = slack.methods().dndEndSnooze(r -> r.token(userToken));
// Since Aug 2022, "snooze_not_active" is no longer returned for any cases
// assertThat(response.getError(), is("snooze_not_active"));
// assertThat(response.isOk(), is(false));
assertThat(response.getError(), is(nullValue()));
}

{
Expand Down

0 comments on commit 1d8494c

Please sign in to comment.