Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/ex00-testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ In ```ex00-writing-tests/flipper/src/tests/``` you will find the ```mock.rs``` f
* Events and Errors: https://docs.substrate.io/main-docs/build/events-errors/

## Ensure everything is ok
`cargo check`
`cargo test`
`cargo check --package pallet-flipper`
`cargo test --package pallet-flipper`
2 changes: 1 addition & 1 deletion exercises/ex01-pallet-easy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ We placed some helpful comments in the code 😉.
Launch the tests by running:

```sh
$ cargo test
$ cargo test --package pallet-assets
```

## What to focus on?
Expand Down
2 changes: 1 addition & 1 deletion exercises/ex05-hooks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You will succeed once every tests passes :).
Launch the tests by running:

```sh
$ cargo test
$ cargo test --package pallet-reminder
```

## some links
Expand Down
2 changes: 1 addition & 1 deletion exercises/ex06-weights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ You will succeed once every test passes :).
Launch the tests by running:

```sh
$ cargo test
$ cargo test --package pallet-weight
```

## Part 3 - Conditional weights
Expand Down