Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
The change is due to the new label send to the server.
  • Loading branch information
bmarty committed Jan 12, 2024
1 parent 1ab10a9 commit 592bdb0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class DefaultBugReporterTest {
server.shutdown()
assertThat(onUploadCancelledCalled).isFalse()
assertThat(onUploadFailedCalled).isFalse()
assertThat(progressValues.size).isEqualTo(10)
assertThat(progressValues.size).isEqualTo(11)
assertThat(onUploadSucceedCalled).isTrue()
}

Expand Down Expand Up @@ -131,7 +131,7 @@ class DefaultBugReporterTest {
assertThat(onUploadCancelledCalled).isFalse()
assertThat(onUploadFailedCalled).isTrue()
assertThat(onUploadFailedReason).isEqualTo("An error body")
assertThat(progressValues.size).isEqualTo(10)
assertThat(progressValues.size).isEqualTo(11)
assertThat(onUploadSucceedCalled).isFalse()
}

Expand Down

0 comments on commit 592bdb0

Please sign in to comment.