Skip to content

Commit ee5c24e

Browse files
committed
Fix indentation
1 parent 599ef6a commit ee5c24e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

spec/spec_helper.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_plugin(plugin, ohai = Ohai::System.new, path = PLUGIN_PATH)
3333
end
3434

3535
def convert_windows_output(stdout)
36-
stdout.gsub("\n", "\r\n")
36+
stdout.gsub("\n", "\r\n")
3737
end
3838

3939
def it_should_check_from(plugin, attribute, from, value)
@@ -91,6 +91,10 @@ def it_should_check_from_deep_mash(plugin, mash, attribute, from, value)
9191

9292
RSpec.configure do |config|
9393

94+
# Not worth addressing warnings in Ohai until upstream ones in ffi-yajl are
95+
# fixed.
96+
# config.warnings = true
97+
9498
config.raise_errors_for_deprecations!
9599

96100
# `expect` should be preferred for new tests or when refactoring old tests,

0 commit comments

Comments
 (0)