diff --git a/bizinikiwi/primitives/api/test/tests/ui/empty_impl_runtime_apis_call.stderr b/bizinikiwi/primitives/api/test/tests/ui/empty_impl_runtime_apis_call.stderr index c155e2d9..6298c00f 100644 --- a/bizinikiwi/primitives/api/test/tests/ui/empty_impl_runtime_apis_call.stderr +++ b/bizinikiwi/primitives/api/test/tests/ui/empty_impl_runtime_apis_call.stderr @@ -2,6 +2,6 @@ error: No api implementation given! --> tests/ui/empty_impl_runtime_apis_call.rs:28:1 | 28 | pezsp_api::impl_runtime_apis! {} - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this error originates in the macro `pezsp_api::impl_runtime_apis` (in Nightly builds, run with -Z macro-backtrace for more info) diff --git a/bizinikiwi/primitives/api/test/tests/ui/impl_incorrect_method_signature.stderr b/bizinikiwi/primitives/api/test/tests/ui/impl_incorrect_method_signature.stderr index 6a60816a..2927a4ed 100644 --- a/bizinikiwi/primitives/api/test/tests/ui/impl_incorrect_method_signature.stderr +++ b/bizinikiwi/primitives/api/test/tests/ui/impl_incorrect_method_signature.stderr @@ -2,23 +2,23 @@ error[E0603]: struct `RuntimeVersion` is private --> tests/ui/impl_incorrect_method_signature.rs:37:30 | 37 | fn version() -> pezsp_api::RuntimeVersion { - | ^^^^^^^^^^^^^^ private struct + | ^^^^^^^^^^^^^^ private struct | note: the struct `RuntimeVersion` is defined here --> $WORKSPACE/bizinikiwi/primitives/api/src/lib.rs | - | use sp_version::RuntimeVersion; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ + | use pezsp_version::RuntimeVersion; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider importing this struct instead | -37 - fn version() -> pezsp_api::RuntimeVersion { -37 + fn version() -> sp_version::RuntimeVersion { - | +37 - fn version() -> pezsp_api::RuntimeVersion { +37 + fn version() -> pezsp_version::RuntimeVersion { + | help: import `RuntimeVersion` directly - | -37 - fn version() -> pezsp_api::RuntimeVersion { -37 + fn version() -> sp_version::RuntimeVersion { - | + | +37 - fn version() -> pezsp_api::RuntimeVersion { +37 + fn version() -> pezsp_version::RuntimeVersion { + | error[E0053]: method `test` has an incompatible type for trait --> tests/ui/impl_incorrect_method_signature.rs:33:17 diff --git a/bizinikiwi/primitives/api/test/tests/ui/type_reference_in_impl_runtime_apis_call.stderr b/bizinikiwi/primitives/api/test/tests/ui/type_reference_in_impl_runtime_apis_call.stderr index 3ef3081c..6e477f24 100644 --- a/bizinikiwi/primitives/api/test/tests/ui/type_reference_in_impl_runtime_apis_call.stderr +++ b/bizinikiwi/primitives/api/test/tests/ui/type_reference_in_impl_runtime_apis_call.stderr @@ -2,23 +2,23 @@ error[E0603]: struct `RuntimeVersion` is private --> tests/ui/type_reference_in_impl_runtime_apis_call.rs:39:30 | 39 | fn version() -> pezsp_api::RuntimeVersion { - | ^^^^^^^^^^^^^^ private struct + | ^^^^^^^^^^^^^^ private struct | note: the struct `RuntimeVersion` is defined here --> $WORKSPACE/bizinikiwi/primitives/api/src/lib.rs | - | use sp_version::RuntimeVersion; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ + | use pezsp_version::RuntimeVersion; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider importing this struct instead | -39 - fn version() -> pezsp_api::RuntimeVersion { -39 + fn version() -> sp_version::RuntimeVersion { - | +39 - fn version() -> pezsp_api::RuntimeVersion { +39 + fn version() -> pezsp_version::RuntimeVersion { + | help: import `RuntimeVersion` directly - | -39 - fn version() -> pezsp_api::RuntimeVersion { -39 + fn version() -> sp_version::RuntimeVersion { - | + | +39 - fn version() -> pezsp_api::RuntimeVersion { +39 + fn version() -> pezsp_version::RuntimeVersion { + | error[E0053]: method `test` has an incompatible type for trait --> tests/ui/type_reference_in_impl_runtime_apis_call.rs:33:17