diff options
Diffstat (limited to 't/30parse.t')
-rwxr-xr-x | t/30parse.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/30parse.t b/t/30parse.t index 3734631..6198468 100755 --- a/t/30parse.t +++ b/t/30parse.t @@ -6,7 +6,7 @@ use constant FIELDS => qw( date card_type avs_response cvv2_response - total_amount taxes + total_amount tax_amounts ); use constant RESULTS => ( @@ -22,7 +22,7 @@ use constant RESULTS => ( avs_response => undef, cvv2_response => undef, total_amount => 3.88, - taxes => { GST => 0.25 }, + tax_amounts => { GST => 0.25 }, uuid => 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6', guid => 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6', }, @@ -38,7 +38,7 @@ use constant RESULTS => ( avs_response => undef, cvv2_response => undef, total_amount => 3.88, - taxes => { GST => 0.25, + tax_amounts => { GST => 0.25, PST => 0.27 }, uuid => undef, guid => undef, |