From b193ad229f84c4ea462a2ad2ed14be05e6051f45 Mon Sep 17 00:00:00 2001 From: Karina Kwiatek Date: Wed, 1 Nov 2023 22:44:52 +0100 Subject: [PATCH] Fix lint error --- spec/workers/question_worker_spec.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/workers/question_worker_spec.rb b/spec/workers/question_worker_spec.rb index 3d03b7e8..5ced7465 100644 --- a/spec/workers/question_worker_spec.rb +++ b/spec/workers/question_worker_spec.rb @@ -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