Skip to content

Commit

Permalink
Fixed indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tammer Saleh committed Sep 20, 2008
1 parent 967b9fc commit a9b82f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/shoulda/controller/macros.rb
Expand Up @@ -123,7 +123,8 @@ def should_assign_to(*names)
instantiate_variables_from_assigns do
expected_value = eval(opts[:equals], self.send(:binding), __FILE__, __LINE__)
assert_equal expected_value, assigned_value,
"Instance variable @#{name} expected to be #{expected_value} but was #{assigned_value}"
"Instance variable @#{name} expected to be #{expected_value}" +
" but was #{assigned_value}"
end
end
end
Expand Down

0 comments on commit a9b82f5

Please sign in to comment.