CORDA-2631 - removed unused version mapping and revert tracking test (#4781)

CORDA-2631 - removed unused version mapping and revert tracking test
This commit is contained in:
Tudor Malene
2019-02-18 14:49:57 +00:00
committed by Gavin Thomas
parent 1ed5fce6a6
commit 626fa19769
6 changed files with 15 additions and 47 deletions

View File

@ -139,8 +139,7 @@ class TransactionTests {
timeWindow,
privacySalt,
testNetworkParameters(),
emptyList(),
inputVersions = emptyMap()
emptyList()
)
transaction.verify()
@ -192,8 +191,7 @@ class TransactionTests {
timeWindow,
privacySalt,
testNetworkParameters(notaries = listOf(NotaryInfo(DUMMY_NOTARY, true))),
emptyList(),
inputVersions = emptyMap()
emptyList()
)
assertFailsWith<TransactionVerificationException.NotaryChangeInWrongTransactionType> { buildTransaction().verify() }