Skip to content

Commit

Permalink
Fix idnentation and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanbergen committed Mar 21, 2014
1 parent 7387595 commit e906159
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/unit/integrations/helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ class HelperTest < Test::Unit::TestCase
include ActiveMerchant::Billing::Integrations

def test_mappings_gets_initialized
helper_klass_without_mappings = Class.new(ActiveMerchant::Billing::Integrations::Helper)
# assert_equal Hash.new, helper_klass_without_mappings.mappings

assert_nothing_raised { helper_klass_without_mappings.new(123,'some_key', :amount => 500) }
helper_klass_without_mappings = Class.new(ActiveMerchant::Billing::Integrations::Helper)
assert_equal Hash.new, helper_klass_without_mappings.mappings
assert_nothing_raised { helper_klass_without_mappings.new(123,'some_key', :amount => 500) }
end
end

0 comments on commit e906159

Please sign in to comment.