Skip to content

Commit

Permalink
Rename ivar in the Dispatcher#call integration spec
Browse files Browse the repository at this point in the history
  • Loading branch information
snusnu committed May 17, 2013
1 parent d2e7c03 commit caf66c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -290,10 +290,10 @@ few simple actions.
module App

class Database
include Concord.new(:entries)
include Concord.new(:relations)

def [](relation_name)
Relation.new(entries[relation_name])
Relation.new(relations[relation_name])
end

class Relation
Expand Down
4 changes: 2 additions & 2 deletions spec/integration/substation/dispatcher/call_spec.rb
Expand Up @@ -5,10 +5,10 @@
module App

class Database
include Concord.new(:entries)
include Concord.new(:relations)

def [](relation_name)
Relation.new(entries[relation_name])
Relation.new(relations[relation_name])
end

class Relation
Expand Down

0 comments on commit caf66c9

Please sign in to comment.