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 /activerecord/test/cases/adapters/sqlite3 | |
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 'activerecord/test/cases/adapters/sqlite3')
-rw-r--r-- | activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb b/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb index 4e09779dc1..b2bf9480dd 100644 --- a/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +++ b/activerecord/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb @@ -57,10 +57,11 @@ module ActiveRecord end end - # SQLite databases should be able to support any type and not - # just the ones mentioned in the native_database_types. - # Therefore test_invalid column should always return true - # even if the type is not valid. + # sqlite3 databases should be able to support any type and not just the + # ones mentioned in the native_database_types. + # + # Therefore test_invalid column should always return true even if the + # type is not valid. def test_invalid_column assert @conn.valid_type?(:foobar) end @@ -126,7 +127,7 @@ module ActiveRecord assert @conn, 'should have connection' end - # SQLite3 defaults to UTF-8 encoding + # sqlite3 defaults to UTF-8 encoding def test_encoding assert_equal 'UTF-8', @conn.encoding end |