diff --git a/app/models/legacy/db.rb b/app/models/legacy/db.rb index 0c8e6624a..1cb635b3b 100644 --- a/app/models/legacy/db.rb +++ b/app/models/legacy/db.rb @@ -4,7 +4,7 @@ module Legacy begin establish_connection :fred rescue ActiveRecord::AdapterNotSpecified => e - logger.info "'fred' database not configured, please update your database.yml file: #{e}" + logger.info "Legacy 'fred' database support is currently disabled because #{e}" end def readonly? diff --git a/app/views/registrar/deposits/new.haml b/app/views/registrar/deposits/new.haml index 6557316f7..695068ecc 100644 --- a/app/views/registrar/deposits/new.haml +++ b/app/views/registrar/deposits/new.haml @@ -17,6 +17,6 @@ .row .col-md-12.text-right - = button_tag(t('save'), class: 'btn btn-primary') + = button_tag(t(:add), class: 'btn btn-primary') diff --git a/db/schema.rb b/db/schema.rb index 2bf412209..60a855673 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20150415075408) do +ActiveRecord::Schema.define(version: 20150414151357) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" diff --git a/spec/features/registrar/invoices_spec.rb b/spec/features/registrar/invoices_spec.rb index 2632aa8ef..845a79444 100644 --- a/spec/features/registrar/invoices_spec.rb +++ b/spec/features/registrar/invoices_spec.rb @@ -21,7 +21,7 @@ feature 'Invoices', type: :feature do it 'should navigate to the domains index page' do current_path.should == '/registrar' - click_link 'Accounting' + click_link 'Billing' current_path.should == '/registrar/invoices' page.should have_text('Your current credit account balance is')