diff --git a/src/test/java/rest/koios/client/backend/api/asset/AssetServicePreviewIntegrationTest.java b/src/test/java/rest/koios/client/backend/api/asset/AssetServicePreviewIntegrationTest.java index 3e77dc1..73a22ff 100644 --- a/src/test/java/rest/koios/client/backend/api/asset/AssetServicePreviewIntegrationTest.java +++ b/src/test/java/rest/koios/client/backend/api/asset/AssetServicePreviewIntegrationTest.java @@ -150,7 +150,7 @@ void getAssetTxsTest() throws ApiException { String assetName = "DimensionBox #0063"; String assetNameHex = String.format("%x", new BigInteger(1, assetName.getBytes())); Result> assetTxsResult = assetService.getAssetTransactions(assetPolicy, assetNameHex, Options.EMPTY); - Assertions.assertEquals("30004c3d78ae326b303709d60c6461471755c40d3c1ff10a10b29d4972bb56a6", assetTxsResult.getValue().get(0).getTxHash()); + Assertions.assertEquals("f9f89c42f99c3bba9c1cf66981cdd4feb1bd275220edf5fe4f8e5ca8e9cf442b", assetTxsResult.getValue().get(0).getTxHash()); Assertions.assertTrue(assetTxsResult.isSuccessful()); Assertions.assertNotNull(assetTxsResult.getValue()); log.info(assetTxsResult.getValue().toString()); diff --git a/src/test/java/rest/koios/client/backend/factory/options/OptionsPreviewTest.java b/src/test/java/rest/koios/client/backend/factory/options/OptionsPreviewTest.java index 6d42a2e..1706a23 100644 --- a/src/test/java/rest/koios/client/backend/factory/options/OptionsPreviewTest.java +++ b/src/test/java/rest/koios/client/backend/factory/options/OptionsPreviewTest.java @@ -112,7 +112,7 @@ void MixedWithLogicalNotOperatorOptionsTest() throws ApiException { assertTrue(transactionsResult.isSuccessful()); assertNotNull(transactionsResult.getValue()); log.info(transactionsResult.getValue().toString()); - assertEquals(11, transactionsResult.getValue().size()); + assertEquals(13, transactionsResult.getValue().size()); assertNotEquals("8a1f7811d7c3c46c3421e5b6515239c8cd7cce21c371bb0d5c107d0296fab29d", transactionsResult.getValue().get(0).getTxHash()); assertNotEquals(0, transactionsResult.getValue().get(0).getBlockHeight()); assertNotNull(transactionsResult.getValue().get(0).getBlockTime());