Skip to content

Commit eac34e7

Browse files
committed
fix: fmt & external error change
1 parent 1adae31 commit eac34e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crates/e2e/macro/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ mod tests {
273273
}
274274

275275
#[test]
276-
#[should_panic(expected = "ErrorUnknownField")]
276+
#[should_panic(expected = "Unknown field")]
277277
fn config_backend_runtime_only_default_not_allowed() {
278278
let input = quote! {
279279
backend(runtime_only(default)),
@@ -365,7 +365,7 @@ mod tests {
365365
}
366366

367367
#[test]
368-
#[should_panic(expected = "ErrorUnknownField")]
368+
#[should_panic(expected = "Unknown field")]
369369
fn config_backend_node_auto_not_allowed() {
370370
let input = quote! {
371371
backend(node(auto)),

integration-tests/public/fuzz-testing/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ pub mod fuzz_testing {
4242
use ink_e2e::ContractsBackend;
4343
use quickcheck_macros::quickcheck;
4444

45-
/// We use `#[ink_e2e::test(runtime)]` here. It doesn't start a node for each test,
46-
/// but instead interacts with a sandboxed `pallet-revive`.
45+
/// We use `#[ink_e2e::test(runtime)]` here. It doesn't start a node for each
46+
/// test, but instead interacts with a sandboxed `pallet-revive`.
4747
///
4848
/// See <https://use.ink/docs/v6/contract-testing/drink#as-an-alternative-backend-to-inks-e2e-testing-framework>
4949
/// for more details.

0 commit comments

Comments
 (0)