Skip to content

Commit

Permalink
Fix cucumber_opts warning by passing in an array
Browse files Browse the repository at this point in the history
  • Loading branch information
mkienow-r7 committed Jul 14, 2022
1 parent a885323 commit c2d7b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -15,7 +15,7 @@ require 'cucumber'
require 'cucumber/rake/task'

Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format pretty"
t.cucumber_opts = %w(features --format pretty)
end

task :default => [ :tests, :yard ]
Expand Down

0 comments on commit c2d7b68

Please sign in to comment.