Merge pull request #39952 from tgxworld/fix_incorrect_test

Fix wrong attributes being set in transactions savepoint test.
This commit is contained in:
Eugene Kenny 2020-07-30 09:27:42 +01:00 committed by GitHub
commit 98135434d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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