From 5d9d309097217b9b88f2e9365cd9d295feb23d01 Mon Sep 17 00:00:00 2001 From: Hendy Tanata Date: Sat, 2 Jul 2016 12:38:21 -0700 Subject: [PATCH] Fix typo: accidently -> accidentally. --- activerecord/test/cases/migration/foreign_key_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/test/cases/migration/foreign_key_test.rb b/activerecord/test/cases/migration/foreign_key_test.rb index 49a8fa241f..4237e89731 100644 --- a/activerecord/test/cases/migration/foreign_key_test.rb +++ b/activerecord/test/cases/migration/foreign_key_test.rb @@ -233,7 +233,7 @@ def change end add_foreign_key :houses, :cities, column: "city_id" - # remove and re-add to test that schema is updated and not accidently cached + # remove and re-add to test that schema is updated and not accidentally cached remove_foreign_key :houses, :cities add_foreign_key :houses, :cities, column: "city_id", on_delete: :cascade end -- GitLab