spec/cli/history_spec.rb in travis-1.2.0 vs spec/cli/history_spec.rb in travis-1.2.1
- old
+ new
@@ -1,20 +1,20 @@
require 'spec_helper'
describe Travis::CLI::History do
example 'travis history' do
run_cli('history').should be_success
- stdout.should be == "#6180 failed: master Associaton -> Association\n"
+ stdout.should be == "#6180 failed: master Associaton -> Association\n"
end
example 'travis history -a 6180' do
run_cli('history', '-a', '6180').should be_success
stdout.should be == ''
end
example 'travis history -b master' do
run_cli('history', '-b', 'master').should be_success
- stdout.should be == "#6180 failed: master Associaton -> Association\n"
+ stdout.should be == "#6180 failed: master Associaton -> Association\n"
end
example 'travis history -b not-master' do
run_cli('history', '-b', 'not-master').should be_success
stdout.should be_empty