spec/app42/command/info_spec.rb in app42-0.5.5 vs spec/app42/command/info_spec.rb in app42-0.5.6

- old
+ new

@@ -8,20 +8,20 @@ end context("with right app name") do it 'Should return correct app information json' do - respone = App42::Command::Base.new.app_information 'info', @app_name + response = App42::Command::Base.new.app_information 'info', @app_name path = "#{APP_ROOT}/app42/spec/data/info.yml" info = YAML.load_file(path) - respone.should eql info + response.should eql info end it 'Should return correct app state json' do - respone = App42::Command::Base.new.app_information 'state', @app_name + response = App42::Command::Base.new.app_information 'state', @app_name path = "#{APP_ROOT}/app42/spec/data/state.yml" info = YAML.load_file(path) - respone.should eql info + response.should eql info end - end + end end end \ No newline at end of file