aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activemodel/test/cases/dirty_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/test/cases/dirty_test.rb b/activemodel/test/cases/dirty_test.rb
index efadb2600f..8b55901a65 100644
--- a/activemodel/test/cases/dirty_test.rb
+++ b/activemodel/test/cases/dirty_test.rb
@@ -83,7 +83,7 @@ class DirtyTest < ActiveModel::TestCase
assert_not_nil @model.changes['name']
end
- test "be cosistent with symbols arguments after the changes are applied" do
+ test "be consistent with symbols arguments after the changes are applied" do
@model.name = "David"
assert @model.attribute_changed?(:name)
@model.save