Skip to content

Commit

Permalink
ENGCOM-4302: Static test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bystritsky committed Mar 5, 2019
1 parent d1e71b9 commit f893a92
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,13 @@ protected function getTotalsExpression(
? '(main_table.base_subtotal - %2$s - %1$s - (ABS(main_table.base_discount_amount) - %3$s - %4$s))'
: '((main_table.base_subtotal - %1$s - %2$s - (ABS(main_table.base_discount_amount) - %3$s - %4$s)) '
. ' * main_table.base_to_global_rate)';
return sprintf($template, $baseSubtotalRefunded, $baseSubtotalCanceled, $baseDiscountRefunded, $baseDiscountCanceled);
return sprintf(
$template,
$baseSubtotalRefunded,
$baseSubtotalCanceled,
$baseDiscountRefunded,
$baseDiscountCanceled
);
}

/**
Expand Down

0 comments on commit f893a92

Please sign in to comment.