Skip to content
Snippets Groups Projects
Commit 22139a3c authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Prepare UI tests for Rust 1.51 & new CI image (#8474)


* Prepare UI tests for Rust 1.51 & new CI image

* another stderr to be fixed

Co-authored-by: default avatarDenis P <denis.pisarev@parity.io>
parent c8fced20
No related merge requests found
error: `System` pallet declaration is missing. Please add this line: `System: frame_system::{Pallet, Call, Storage, Config, Event<T>},`
--> $DIR/missing_system_module.rs:8:2
|
8 | {
| _____^
8 | / {
9 | | }
| |_____^
......@@ -4,4 +4,9 @@ error[E0277]: can't compare `Foo<T>` with `Foo<T>`
6 | struct Foo<T: Config> {
| ^^^ no implementation for `Foo<T> == Foo<T>`
|
::: $RUST/core/src/cmp.rs
|
| pub trait Eq: PartialEq<Self> {
| --------------- required by this bound in `Eq`
|
= help: the trait `PartialEq` is not implemented for `Foo<T>`
error[E0107]: wrong number of type arguments: expected 1, found 0
--> $DIR/hooks_invalid_item.rs:12:18
|
12 | impl<T: Config> Hooks for Pallet<T> {}
| ^^^^^ expected 1 type argument
error[E0107]: missing generics for trait `Hooks`
--> $DIR/hooks_invalid_item.rs:12:18
|
12 | impl<T: Config> Hooks for Pallet<T> {}
| ^^^^^ expected 1 type argument
|
note: trait defined here, with 1 type parameter: `BlockNumber`
--> $DIR/hooks.rs:206:11
|
206 | pub trait Hooks<BlockNumber> {
| ^^^^^ -----------
help: use angle brackets to add missing type argument
|
12 | impl<T: Config> Hooks<BlockNumber> for Pallet<T> {}
| ^^^^^^^^^^^^^
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment