diff --git a/@stellar/anchor-tests/package.json b/@stellar/anchor-tests/package.json index d5d007b..1dfea3a 100644 --- a/@stellar/anchor-tests/package.json +++ b/@stellar/anchor-tests/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/anchor-tests", - "version": "0.5.10", + "version": "0.5.11", "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/sep24/transaction.ts b/@stellar/anchor-tests/src/tests/sep24/transaction.ts index 1e53eee..7d4e4c1 100644 --- a/@stellar/anchor-tests/src/tests/sep24/transaction.ts +++ b/@stellar/anchor-tests/src/tests/sep24/transaction.ts @@ -204,7 +204,7 @@ export const hasProperWithdrawTransactionSchema: Test = { async run(_config: Config): Promise { const result: Result = { networkCalls: [] }; const validationResult = validate( - this.context.expects.depositTransactionObj, + this.context.expects.withdrawTransactionObj, getTransactionSchema(false), ); if (validationResult.errors.length !== 0) { diff --git a/server/package.json b/server/package.json index e0003d3..4e288d0 100644 --- a/server/package.json +++ b/server/package.json @@ -30,6 +30,6 @@ "winston": "^3.3.3" }, "peerDependencies": { - "@stellar/anchor-tests": "0.5.10" + "@stellar/anchor-tests": "0.5.11" } }