Skip to content

Commit

Permalink
fix chronopay test failure under 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Cody Fauser committed Jun 1, 2010
1 parent 05cccb1 commit 2b0d884
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,5 +1,6 @@
= ActiveMerchant CHANGELOG

* Fix test failure in chronopay helper in Ruby 1.9.1 [cody]
* Fix timezone issue in credit card test. [cody]
* Fix failing unit test for Garanti gateway [cody]
* Fix failing CyberSource remote test [Patrick Joyce]
Expand Down
6 changes: 3 additions & 3 deletions lib/active_merchant/billing/integrations/chronopay/helper.rb
Expand Up @@ -18,9 +18,9 @@ class Helper < ActiveMerchant::Billing::Integrations::Helper
'DE' => %w( DE AT CH LI ),
'PT' => %w( AO BR CV GW MZ PT ST TL),
'RU' => %w( BY KG KZ RU ),
'LV' => 'LV',
'CN1' => 'CN',
'NL' => 'NL'
'LV' => %w( LV ),
'CN1' => %w( CN ),
'NL' => %w( NL )
}

LANG_FOR_COUNTRY = COUNTRIES_FOR_LANG.inject(Hash.new("EN")) do |memo, (lang, countries)|
Expand Down

0 comments on commit 2b0d884

Please sign in to comment.