Skip to content

Commit

Permalink
Fix Preview Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edridudi committed Feb 2, 2023
1 parent e4313f4 commit 57eb0bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ void getAssetTxsTest() throws ApiException {
String assetName = "DimensionBox #0063";
String assetNameHex = String.format("%x", new BigInteger(1, assetName.getBytes()));
Result<List<TxHash>> 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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 57eb0bd

Please sign in to comment.