Skip to content

Commit

Permalink
add network calls for SEP-12 test (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban authored Aug 17, 2022
1 parent 5b630c3 commit f92edc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion @stellar/anchor-tests/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 2 additions & 0 deletions @stellar/anchor-tests/src/tests/sep12/putCustomer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ export const differentMemosSameAccount: Test = {
const sendingCustomerCall: NetworkCall = {
request: sep12Request,
};
result.networkCalls.push(sendingCustomerCall);
const sendingCustomerResponse = await makeRequest(
sendingCustomerCall,
202,
Expand Down Expand Up @@ -338,6 +339,7 @@ export const differentMemosSameAccount: Test = {
const receivingCustomerCall: NetworkCall = {
request: receivingCustomerRequest,
};
result.networkCalls.push(receivingCustomerCall);
const receivingCustomerResponse = await makeRequest(
receivingCustomerCall,
202,
Expand Down

0 comments on commit f92edc2

Please sign in to comment.