From d44c7cd2eb45e7ebb15f1abbda2965fbe1db0cdb Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Sun, 18 Feb 2024 18:41:36 +0800 Subject: [PATCH] Fix integration test for `Plugin` due to error message changed Signed-off-by: Eval EXEC --- test/src/spec/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/spec/plugin.rs b/test/src/spec/plugin.rs index 052d0216..7cdd2d67 100644 --- a/test/src/spec/plugin.rs +++ b/test/src/spec/plugin.rs @@ -61,7 +61,7 @@ impl Spec for Plugin { let output = setup.cli(&format!("wallet transfer --from-account {} --to-address ckt1qyqt8xaupvm8837nv3gtc9x0ekkj64vud3jq5t63cs --capacity 1000", Miner::address())); // Means the signature is filled but is wrong: https://nervosnetwork.github.io/ckb-script-error-codes/by-data-hash/709f3fda12f561cfacf92273c57a98fede188a3f1a59b1f888d113f9cce08649.html#-31 assert!( - output.contains("cause: ValidationFailure: see the error code -31 in the page"), + output.contains("cause: ValidationFailure: see error code -31 on page"), "{}", output );