diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-02-14 23:20:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 23:20:25 +0900 |
commit | 3a72b555cfe3369aa7ca347c7ebc6f28b4940083 (patch) | |
tree | dbe299bca05e969ec0536f5c3e00ecd1a3f809e3 /activerecord/test | |
parent | b9ae7481fd5653fc6430148f06e0fca27317829e (diff) | |
download | rails-3a72b555cfe3369aa7ca347c7ebc6f28b4940083.tar.gz rails-3a72b555cfe3369aa7ca347c7ebc6f28b4940083.tar.bz2 rails-3a72b555cfe3369aa7ca347c7ebc6f28b4940083.zip |
Remove duplicated "does" [ci skip]
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/validations/uniqueness_validation_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/validations/uniqueness_validation_test.rb b/activerecord/test/cases/validations/uniqueness_validation_test.rb index 6d22638592..50e855941b 100644 --- a/activerecord/test/cases/validations/uniqueness_validation_test.rb +++ b/activerecord/test/cases/validations/uniqueness_validation_test.rb @@ -385,7 +385,7 @@ class UniquenessValidationTest < ActiveRecord::TestCase def test_validate_uniqueness_with_limit_and_utf8 if current_adapter?(:SQLite3Adapter) - # Event.title has limit 5, but does SQLite doesn't truncate. + # Event.title has limit 5, but SQLite doesn't truncate. e1 = Event.create(title: "一二三四五六七八") assert e1.valid?, "Could not create an event with a unique 8 characters title" |