Fix specs

This commit is contained in:
Dzmitry Plashchynski
2022-07-24 22:38:08 +03:00
parent e03d9b4ba6
commit ddbfa4c42e

View File

@@ -1,13 +1,13 @@
require 'spec_helper' require 'spec_helper'
class TestJob class TestJob
def perform(args) def perform(*args)
puts 'Test!' puts 'Test!'
end end
end end
class TestFailingJob class TestFailingJob
def perform(args) def perform(*args)
raise 'Some error' raise 'Some error'
end end
end end