diff --git a/spec/controllers/heartbeats_controller_spec.rb b/spec/controllers/heartbeats_controller_spec.rb index 8ba5709..9a5228f 100644 --- a/spec/controllers/heartbeats_controller_spec.rb +++ b/spec/controllers/heartbeats_controller_spec.rb @@ -11,8 +11,7 @@ RSpec.describe HeartbeatsController, type: :controller do it "Respond with next heartbeat time" do post :create, format: :json expect(response).to have_http_status(:created) - expect(JSON.parse(response.body)["next_heartbeat_time"]).to - match(heartbeat.next_heartbeat_time) + expect(JSON.parse(response.body)["next_heartbeat_time"]).to match(heartbeat.next_heartbeat_time) end end