mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix wrong attributes being set in transactions savepoint test.
This commit is contained in:
parent
fa82ea4098
commit
96a1c88ece
1 changed files with 2 additions and 2 deletions
|
@ -520,7 +520,7 @@ class TransactionTest < ActiveRecord::TestCase
|
|||
|
||||
begin
|
||||
Topic.transaction requires_new: true do
|
||||
@first.happy = false
|
||||
@first.approved = false
|
||||
@first.save!
|
||||
raise
|
||||
end
|
||||
|
@ -541,7 +541,7 @@ class TransactionTest < ActiveRecord::TestCase
|
|||
|
||||
begin
|
||||
@second.transaction requires_new: true do
|
||||
@first.happy = false
|
||||
@first.approved = false
|
||||
@first.save!
|
||||
raise
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue