Skip to content

Commit

Permalink
(BKR-1213) fix syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kevpl committed Oct 3, 2017
1 parent 22ab66e commit f2a92cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/beaker-rspec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
keyfile = options[:keyfile] ? ['--keyfile', options[:keyfile]] : nil
debug = options[:debug] ? ['--log-level', 'debug'] : nil
color = options[:color] == 'no' ? ['--no-color'] : nil
options_file = options[:optionsfile] ? ['--options-file',options[:optionsfile]] || nil
options_file = options[:optionsfile] ? ['--options-file',options[:optionsfile]] : nil

# Configure all nodes in nodeset
c.setup([fresh_nodes, '--hosts', nodesetfile, keyfile, debug, color, options_file]).flatten.compact)
c.setup([fresh_nodes, '--hosts', nodesetfile, keyfile, debug, color, options_file].flatten.compact)
c.provision
c.validate
c.configure
Expand Down

0 comments on commit f2a92cc

Please sign in to comment.