diff options
author | Zachary Scott <e@zzak.io> | 2014-07-06 11:47:16 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-07-06 11:47:16 -0700 |
commit | 2f716694f20cd19464029513fb59440fd9000840 (patch) | |
tree | 778ea85c83675ee76ff13a58e817bfa6036111d3 /actionview/test | |
parent | 2cda0aff3051bd84c5f3596174cf4d7f1999050a (diff) | |
download | rails-2f716694f20cd19464029513fb59440fd9000840.tar.gz rails-2f716694f20cd19464029513fb59440fd9000840.tar.bz2 rails-2f716694f20cd19464029513fb59440fd9000840.zip |
Change back occurrences of SQLite(3) to sqlite3 when referring to the
adapter, fixed from #16057 [ci skip]
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/active_record_unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/active_record_unit.rb b/actionview/test/active_record_unit.rb index 5b458d9394..cca55c9af4 100644 --- a/actionview/test/active_record_unit.rb +++ b/actionview/test/active_record_unit.rb @@ -57,7 +57,7 @@ class ActiveRecordTestConnector end end - # Load actionpack SQLite tables + # Load actionpack sqlite3 tables def load_schema File.read(File.dirname(__FILE__) + "/fixtures/db_definitions/sqlite.sql").split(';').each do |sql| ActiveRecord::Base.connection.execute(sql) unless sql.blank? |