diff options
author | tyler-ball <tyleraball@gmail.com> | 2014-09-24 09:47:03 -0700 |
---|---|---|
committer | tyler-ball <tyleraball@gmail.com> | 2014-10-07 16:39:56 -0700 |
commit | 7b172fe93aeb0e23832340406c86d41728a49a56 (patch) | |
tree | f1619a617a3b7fed41f44a448e7cd6b02b946296 /kitchen-tests/test | |
parent | 1c7b4629240c49e02c482da6de1a6a2cc574304e (diff) | |
download | chef-7b172fe93aeb0e23832340406c86d41728a49a56.tar.gz |
ffi_yajl still isn't loading, and when I manually installed it on the host I was calling the wrong method
Diffstat (limited to 'kitchen-tests/test')
-rw-r--r-- | kitchen-tests/test/fixtures/serverspec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kitchen-tests/test/fixtures/serverspec_helper.rb b/kitchen-tests/test/fixtures/serverspec_helper.rb index 04e99156d6..48963dc45d 100644 --- a/kitchen-tests/test/fixtures/serverspec_helper.rb +++ b/kitchen-tests/test/fixtures/serverspec_helper.rb @@ -22,7 +22,7 @@ def load_nodestub platform = 'centos' platform_version = os[:release].to_i end - FFI_Yajl::Encoder.parse(IO.read("#{ENV['BUSSER_ROOT']}/../kitchen/data/platforms/#{platform}/#{platform_version}.json"), :symbolize_names => true) + FFI_Yajl::Parser.parse(IO.read("#{ENV['BUSSER_ROOT']}/../kitchen/data/platforms/#{platform}/#{platform_version}.json"), :symbolize_names => true) end # centos-59 doesn't have /sbin in the default path, |