Skip to content

Commit

Permalink
Fixed failing test due to unsupported removeLast
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradbury committed Jan 16, 2025
1 parent df8fa27 commit 47f44bc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ class CommentSqlUtilsTest {
val commentsInDb = generateCommentModels(60, ALL)
val remoteComments = generateCommentModels(30, ALL)

remoteComments.removeLast()
remoteComments.removeLast()
remoteComments.removeLast()
remoteComments.removeAt(remoteComments.lastIndex)
remoteComments.removeAt(remoteComments.lastIndex)
remoteComments.removeAt(remoteComments.lastIndex)

commentsInDb.forEach {
CommentSqlUtils.insertOrUpdateComment(it)
Expand Down

0 comments on commit 47f44bc

Please sign in to comment.