Closed sschulz-t closed 3 years ago
While working on something different, i noticed that there are error checks missing in the test scripts. For example here: https://github.com/GSMA-CPAS/BWRP-chaincode/blob/3731102dc3b9a38b3af9420b4e3f7c147446e81c/hybrid/offchain_test.go#L366
Could you please add a check like require.NoError(t, err)
require.NoError(t, err)
to those calls?
@sschulz-t : I have added the missing error check and committed the code in "abacfeature-test" branch. Kindly check
thanks! fixed in commit 9a708a0c and merged to master
While working on something different, i noticed that there are error checks missing in the test scripts. For example here: https://github.com/GSMA-CPAS/BWRP-chaincode/blob/3731102dc3b9a38b3af9420b4e3f7c147446e81c/hybrid/offchain_test.go#L366
Could you please add a check like
require.NoError(t, err)
to those calls?