Fix lint error

This commit is contained in:
Karina Kwiatek 2023-11-01 22:44:52 +01:00
parent 2327b2ce52
commit b193ad229f
1 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ describe QuestionWorker do
.to(
change { Inbox.where(user_id: follower_id, question_id:, new: true).count }
.from(0)
.to(1)
.to(1),
)
end
@ -64,7 +64,7 @@ describe QuestionWorker do
subscription: {
endpoint: "This will not be used",
keys: {},
}
},
)
end
@ -73,7 +73,7 @@ describe QuestionWorker do
.to(
change { Rpush::Webpush::Notification.count }
.from(0)
.to(1)
.to(1),
)
end
end
@ -88,7 +88,7 @@ describe QuestionWorker do
.to(
change { Inbox.where(user_id: follower_id, question_id:, new: true).count }
.from(0)
.to(1)
.to(1),
)
end