summaryrefslogtreecommitdiff
path: root/spec/spec_helper_acceptance.rb
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppetlabs.com>2015-04-09 15:56:43 +0100
committerDavid Schmitt <david.schmitt@puppetlabs.com>2015-05-05 13:27:46 +0100
commitc0cf14e77405ba3a0b7ae471d1ee1c249c7d4da8 (patch)
tree53d6ab4da40259d793bf15eaa9f248a6af319541 /spec/spec_helper_acceptance.rb
parenta3016c45c5aaa979c9d148eb88bb3f7d1369a507 (diff)
spec_helper_acceptance: fix FUTURE_PARSER usage
Use the more common "yes", instead of "true" to detect FUTURE_PARSER.
Diffstat (limited to 'spec/spec_helper_acceptance.rb')
-rwxr-xr-xspec/spec_helper_acceptance.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb
index 3203ce9..79b1390 100755
--- a/spec/spec_helper_acceptance.rb
+++ b/spec/spec_helper_acceptance.rb
@@ -33,7 +33,7 @@ RSpec.configure do |c|
# Configure all nodes in nodeset
c.before :suite do
- if ENV['FUTURE_PARSER'] == 'true'
+ if ENV['FUTURE_PARSER'] == 'yes'
default[:default_apply_opts] ||= {}
default[:default_apply_opts].merge!({:parser => 'future'})
end