Skip to content

Commit

Permalink
rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiemccarthy committed Jan 15, 2024
1 parent 7e1c6ab commit e7dda34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/execute_subqueries_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
class DreamTest < UnreliableTest
SUBJECTS = %w[fire air water earth life death].freeze
DREAMER_NAMES = %w[Morpheus Cluracan Mervyn Gilbert Nuala].freeze
raise ArgumentError.new("DreamTest needs at least as many subjects as dreamers") if SUBJECTS.size < DREAMER_NAMES.size
raise ArgumentError, "DreamTest needs at least as many subjects as dreamers" if SUBJECTS.size < DREAMER_NAMES.size

RESPONSE_COUNT = 10
end

Expand Down

0 comments on commit e7dda34

Please sign in to comment.