Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pgwillia committed Feb 4, 2020
1 parent 9448dc1 commit bc07285
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class UpdateSymphonyNightly<%= Time.now.strftime('%Y%m%d') %> < ActiveRecord::Mi

create_table_statues
create_table_item_types
create_table_ciculation_rules
create_table_circulation_rules
create_table_libraries
create_table_locations

Expand Down Expand Up @@ -115,7 +115,7 @@ class UpdateSymphonyNightly<%= Time.now.strftime('%Y%m%d') %> < ActiveRecord::Mi
end
end

def create_table_ciculation_rules
def create_table_circulation_rules
create_table :circulation_rules do |t|
t.string :short_code
t.string :name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
assert_match(/foreign_keys/, up)

assert_match(/create_table_statues/, up)
assert_match(/create_table_statues/, up)
assert_match(/create_table_statues/, up)
assert_match(/create_table_statues/, up)
assert_match(/create_table_statues/, up)
assert_match(/create_table_item_types/, up)
assert_match(/create_table_circulation_rules/, up)
assert_match(/create_table_libraries/, up)
assert_match(/create_table_locations/, up)

assert_match(/CirculationRule/, up)
assert_match(/ItemType/, up)
Expand All @@ -46,7 +46,7 @@
assert_method :create_table_item_types, migration do |create_table|
assert_match(/create_table/, create_table)
end
assert_method :create_table_ciculation_rules, migration do |create_table|
assert_method :create_table_circulation_rules, migration do |create_table|
assert_match(/create_table/, create_table)
end
assert_method :create_table_libraries, migration do |create_table|
Expand Down

0 comments on commit bc07285

Please sign in to comment.