aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r--activerecord/test/fixtures/company_in_module.rb2
-rw-r--r--activerecord/test/fixtures/db_definitions/postgresql.sql2
-rw-r--r--activerecord/test/fixtures/developer.rb4
3 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/test/fixtures/company_in_module.rb b/activerecord/test/fixtures/company_in_module.rb
index a484ed5eaf..52b5d37b8c 100644
--- a/activerecord/test/fixtures/company_in_module.rb
+++ b/activerecord/test/fixtures/company_in_module.rb
@@ -24,7 +24,7 @@ module MyApplication
protected
def validate
- errors.add_on_boundry_breaking("name", 3..20)
+ errors.add_on_boundary_breaking("name", 3..20)
end
end
diff --git a/activerecord/test/fixtures/db_definitions/postgresql.sql b/activerecord/test/fixtures/db_definitions/postgresql.sql
index 9bf1035ea3..e79a8cf023 100644
--- a/activerecord/test/fixtures/db_definitions/postgresql.sql
+++ b/activerecord/test/fixtures/db_definitions/postgresql.sql
@@ -123,5 +123,5 @@ CREATE TABLE mixins (
root_id integer,
created_at timestamp,
updated_at timestamp,
- PRIMARY KEY (`id`)
+ PRIMARY KEY (id)
);
diff --git a/activerecord/test/fixtures/developer.rb b/activerecord/test/fixtures/developer.rb
index 737fc3824b..1c4cc30506 100644
--- a/activerecord/test/fixtures/developer.rb
+++ b/activerecord/test/fixtures/developer.rb
@@ -3,6 +3,6 @@ class Developer < ActiveRecord::Base
protected
def validate
- errors.add_on_boundry_breaking("name", 3..20)
+ errors.add_on_boundary_breaking("name", 3..20)
end
-end \ No newline at end of file
+end