diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index d0a9eed..fc07142 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.5.2", + "version": "0.5.3", "description": "stellar-anchor-tests is a library and command line interface for testing Stellar anchors.", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts b/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts index 05fd251..7a8969b 100644 --- a/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts +++ b/@stellar/anchor-tests/src/tests/sep12/putCustomer.ts @@ -307,6 +307,7 @@ export const differentMemosSameAccount: Test = { const sendingCustomerCall: NetworkCall = { request: sep12Request, }; + result.networkCalls.push(sendingCustomerCall); const sendingCustomerResponse = await makeRequest( sendingCustomerCall, 202, @@ -338,6 +339,7 @@ export const differentMemosSameAccount: Test = { const receivingCustomerCall: NetworkCall = { request: receivingCustomerRequest, }; + result.networkCalls.push(receivingCustomerCall); const receivingCustomerResponse = await makeRequest( receivingCustomerCall, 202,