Fix coding standards

This commit is contained in:
Thibault Jouan 2015-04-21 12:12:20 +00:00
parent 8ed77a0460
commit 3776abf405
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
module Uh
module WM
RSpec.describe Dispatcher do
subject(:dispatcher) { described_class.new }
subject(:dispatcher) { described_class.new }
describe '#[]' do
context 'when given key for existing hook' do

View File

@ -68,7 +68,7 @@ module Uh
describe '#register_event_hooks' do
it 'registers quit event hook' do
runner.register_event_hooks
expect(runner).to receive(:stop!)
expect(runner).to receive :stop!
runner.events.emit :quit
end