Skip to content

Commit

Permalink
Do not use parallel assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Nov 4, 2015
1 parent 8f1ed15 commit 6eeb667
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/unit/equalizer/universal_spec.rb
Expand Up @@ -86,7 +86,8 @@
private :firstname, :lastname

def initialize(firstname, lastname)
@firstname, @lastname = firstname, lastname
@firstname = firstname
@lastname = lastname
end
end
end
Expand Down

0 comments on commit 6eeb667

Please sign in to comment.