aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/company.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/fixtures/company.rb')
-rw-r--r--actionview/test/fixtures/company.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/fixtures/company.rb b/actionview/test/fixtures/company.rb
index f3ac3642fa..9f527acdd8 100644
--- a/actionview/test/fixtures/company.rb
+++ b/actionview/test/fixtures/company.rb
@@ -4,6 +4,6 @@ class Company < ActiveRecord::Base
validates_presence_of :name
def validate
- errors.add('rating', 'rating should not be 2') if rating == 2
+ errors.add("rating", "rating should not be 2") if rating == 2
end
end