Skip to content

Commit

Permalink
Some more hygene
Browse files Browse the repository at this point in the history
  • Loading branch information
ntn-x2 committed Oct 17, 2024
1 parent be82c3f commit 86e11f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ jobs:
cargo-flags:
# Generic clippy checks for all features
- --all-targets --all-features
# Clippy lints specifically for the deployable runtime code
- --target wasm32-unknown-unknown --no-default-features
# Generic clippy checks for no features (catches some missing `no_std`-only lints)
- --all-targets
# Clippy lints specifically for all runtime code, excluding all test and binary crates
- --target wasm32-unknown-unknown --no-default-features --workspace --exclude kilt-parachain --exclude standalone-node --exclude xcm-integration-tests --exclude 'dip-provider*' --exclude 'dip-consumer*'
fail-fast: false

steps:
Expand Down
3 changes: 0 additions & 3 deletions pallets/pallet-did-lookup/src/tests/associate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ fn test_add_association_account() {
AssociateAccountRequest::Polkadot(account_hash_alice.clone(), sig_alice_1.clone()),
expire_at,
);
if let Err(err) = res {
println!("Error overwriting association: {:?}", err);
}
assert!(res.is_ok());
assert_eq!(
ConnectedDids::<Test>::get(LinkableAccountId::from(account_hash_alice.clone())),
Expand Down

0 comments on commit 86e11f8

Please sign in to comment.