spec/firebrew/command_line_spec.rb in firebrew-0.1.0 vs spec/firebrew/command_line_spec.rb in firebrew-0.1.1

- old
+ new

@@ -128,10 +128,10 @@ it { expect(subject[0]).to eq(0) } end context 'when the `Firebrew::Error` was thrown' do let(:exeption){raise Firebrew::CommandLineError, 'CommandLineError message'} - it { expect(subject[0]).to eq(7) } + it { expect(subject[0]).to eq(6) } it { expect(subject[1]).to eq('CommandLineError message') } end context 'when the `SystemExit` was thrown' do let(:exeption){abort 'abort message'}