From 3349bc14d590803297d48b71166e12f9dc4ebe73 Mon Sep 17 00:00:00 2001 From: Satya Date: Sat, 9 Oct 2021 23:41:54 +0800 Subject: [PATCH] Testcase updated to include assert for coinsPerUtxoWord --- .../backend/impl/blockfrost/service/BFEpochServiceIT.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java b/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java index 27a0575d..0d861e69 100644 --- a/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java +++ b/src/integration-test/java/com/bloxbean/cardano/client/backend/impl/blockfrost/service/BFEpochServiceIT.java @@ -78,10 +78,8 @@ public void testGetLatestProtocolParameters() throws ApiException { assertThat(protocolParams, notNullValue()); assertThat(protocolParams, notNullValue()); - assertThat(protocolParams.getMinUtxo(), is("0")); assertThat(protocolParams.getPoolDeposit(), is("500000000")); - //TODO commented as coinsPerUtxoWord in testnet is currently 0 -// assertThat(Integer.valueOf(protocolParams.getCoinsPerUtxoWord()), greaterThan(10000)); //actual value 34482 + assertThat(protocolParams.getCoinsPerUtxoWord(), is("34482")); assertThat(protocolParams.getEMax(), notNullValue()); assertThat(protocolParams.getNOpt(), notNullValue()); }