Skip to content

Commit

Permalink
Remove print in test
Browse files Browse the repository at this point in the history
  • Loading branch information
dpad85 committed Jan 30, 2024
1 parent 8335019 commit bacf66c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class TrampolineFeesTestsCommon {

testCases.forEach { (availableAmount, expectedTrampolineAmount) ->
val trampolineAmount = trampolineFees.calculateReverseAmount(availableAmount)
println("$availableAmount: expected=$expectedTrampolineAmount actual=$trampolineAmount")
assertEquals(expectedTrampolineAmount, trampolineAmount)
if (trampolineAmount != null) {
assertEquals(availableAmount, trampolineFees.calculateFees(trampolineAmount) + trampolineAmount)
Expand Down

0 comments on commit bacf66c

Please sign in to comment.