Skip to content

Commit

Permalink
Remove unused 'y' variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinez87 committed Jun 9, 2011
1 parent 0b86ac2 commit 9af4e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activerecord/test/cases/adapters/mysql2/reserved_word_test.rb
Expand Up @@ -87,8 +87,8 @@ def test_activerecord_model
assert_nothing_raised { x.save }
x.order = 'y'
assert_nothing_raised { x.save }
assert_nothing_raised { y = Group.find_by_order('y') }
assert_nothing_raised { y = Group.find(1) }
assert_nothing_raised { Group.find_by_order('y') }
assert_nothing_raised { Group.find(1) }
x = Group.find(1)
end

Expand Down

0 comments on commit 9af4e80

Please sign in to comment.