Fix broken sqlite3_mem tests

I put this test in the wrong place and it broke the sqlite3_mem tests.
This test shouldn't run on sqlite3_mem.
This commit is contained in:
eileencodes 2020-11-02 10:44:57 -05:00
parent 9c8a7f4308
commit 3c99817394
No known key found for this signature in database
GPG Key ID: BA5C575120BBE8DF
1 changed files with 4 additions and 4 deletions

View File

@ -218,11 +218,11 @@ class BasePreventWritesTest < ActiveRecord::TestCase
assert_match %r/\AWrite query attempted while in readonly mode: INSERT /, conn2_error.message
end
end
test "current_preventing_writes" do
ActiveRecord::Base.connection_handler.while_preventing_writes do
assert ActiveRecord::Base.current_preventing_writes, "expected connection current_preventing_writes to return true"
test "current_preventing_writes" do
ActiveRecord::Base.connection_handler.while_preventing_writes do
assert ActiveRecord::Base.current_preventing_writes, "expected connection current_preventing_writes to return true"
end
end
end
end