Skip to content

Commit

Permalink
Merge pull request #19389 from wordpress-mobile/analysis/use-updated-…
Browse files Browse the repository at this point in the history
…and-null-proff-comment-model-class

[Nullability Annotations to Java Classes] Use Updated and Null Proof `CommentModel` Class (`breaking`)
  • Loading branch information
ParaskP7 authored Oct 19, 2023
2 parents 19573b2 + 1a3ee3d commit ca4e8b4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -343,9 +343,9 @@ class GetLikesUseCaseTest : BaseUnitTest() {
OnCommentLikesChanged(
siteId,
commentId,
false
false,
FETCHED_COMMENT_LIKES
).apply {
causeOfChange = FETCHED_COMMENT_LIKES
error = CommentError(
CommentErrorType.AUTHORIZATION_REQUIRED,
"Error occurred"
Expand Down Expand Up @@ -387,9 +387,9 @@ class GetLikesUseCaseTest : BaseUnitTest() {
OnCommentLikesChanged(
siteId,
commentId,
false
false,
FETCHED_COMMENT_LIKES
).apply {
causeOfChange = FETCHED_COMMENT_LIKES
error = CommentError(
CommentErrorType.AUTHORIZATION_REQUIRED,
errorMessage
Expand Down Expand Up @@ -431,9 +431,9 @@ class GetLikesUseCaseTest : BaseUnitTest() {
OnCommentLikesChanged(
siteId,
commentId,
false
false,
FETCHED_COMMENT_LIKES
).apply {
causeOfChange = FETCHED_COMMENT_LIKES
error = CommentError(
CommentErrorType.AUTHORIZATION_REQUIRED,
errorMessage
Expand Down Expand Up @@ -476,9 +476,9 @@ class GetLikesUseCaseTest : BaseUnitTest() {
OnCommentLikesChanged(
siteId,
commentId,
false
false,
FETCHED_COMMENT_LIKES
).apply {
causeOfChange = FETCHED_COMMENT_LIKES
commentLikes = likeData
}
)
Expand Down Expand Up @@ -512,9 +512,9 @@ class GetLikesUseCaseTest : BaseUnitTest() {
OnCommentLikesChanged(
siteId,
commentId,
false
false,
FETCHED_COMMENT_LIKES
).apply {
causeOfChange = FETCHED_COMMENT_LIKES
commentLikes = likeData
}
)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ext {
automatticTracksVersion = '3.3.0'
gutenbergMobileVersion = 'v1.106.0'
wordPressAztecVersion = 'v1.8.0'
wordPressFluxCVersion = 'trunk-6eee26f191edc73d3934ad5876d4a9b7b1456a9f'
wordPressFluxCVersion = 'trunk-5f7448d86213648f402c2e04af738ec5904ebb31'
wordPressLoginVersion = '1.6.0'
wordPressPersistentEditTextVersion = '1.0.2'
wordPressUtilsVersion = '3.10.0'
Expand Down

0 comments on commit ca4e8b4

Please sign in to comment.