diff --git a/it/src/test/scala/com/wavesplatform/it/sync/LeaseTransactionSuite.scala b/it/src/test/scala/com/wavesplatform/it/sync/LeaseTransactionSuite.scala deleted file mode 100644 index 354c726315d..00000000000 --- a/it/src/test/scala/com/wavesplatform/it/sync/LeaseTransactionSuite.scala +++ /dev/null @@ -1,15 +0,0 @@ -package com.wavesplatform.it.sync - -import com.wavesplatform.it.api.SyncHttpApi._ -import com.wavesplatform.it.transactions.BaseTransactionSuite -import com.wavesplatform.it.util._ - -class LeaseTransactionSuite extends BaseTransactionSuite { - - private val defaultFee = 1.waves - - test("can't lease more than you have") { - val (balance, _) = notMiner.accountBalances(firstAddress) - assertBadRequest(sender.lease(firstAddress, secondAddress, balance - defaultFee + 1, defaultFee)) - } -}