From 79b73f74380c2d7d73a636ee85b5e97a84446038 Mon Sep 17 00:00:00 2001 From: Timothy Zakian Date: Tue, 30 Apr 2024 16:49:00 -0700 Subject: [PATCH] fixup! fixup! [graphql] Add support for clever error resolution in graphql --- crates/sui-graphql-e2e-tests/tests/transactions/errors.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sui-graphql-e2e-tests/tests/transactions/errors.exp b/crates/sui-graphql-e2e-tests/tests/transactions/errors.exp index 7bd601c284cf5..5bfdd12bffd5e 100644 --- a/crates/sui-graphql-e2e-tests/tests/transactions/errors.exp +++ b/crates/sui-graphql-e2e-tests/tests/transactions/errors.exp @@ -20,7 +20,7 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Move Runtime Abort. Location: 83f3be7571dccac8f0fd562cf4aa66707bafe3996c49b6f659be49a9841653fe::m::boom (function index 1) at offset 1, Abort Code: 42 in 1st command." + "errors": "Error in 1st command, Move Runtime Abort. Location: 83f3be7571dccac8f0fd562cf4aa66707bafe3996c49b6f659be49a9841653fe::m::boom (function index 1) at offset 1, Abort Code: 42" } } ] @@ -43,7 +43,7 @@ Response: { { "effects": { "status": "FAILURE", - "errors": "Move Runtime Abort. Location: 83f3be7571dccac8f0fd562cf4aa66707bafe3996c49b6f659be49a9841653fe::m::boom (function index 1) at offset 1, Abort Code: 42 in 3rd command." + "errors": "Error in 3rd command, Move Runtime Abort. Location: 83f3be7571dccac8f0fd562cf4aa66707bafe3996c49b6f659be49a9841653fe::m::boom (function index 1) at offset 1, Abort Code: 42" } } ]