Skip to content

Commit

Permalink
fix clippy gripe
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-c-child committed May 15, 2024
1 parent e9da5ce commit d13e36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/name-minter/src/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2372,7 +2372,7 @@ mod whitelist {
whitelist_type: "FakeDiscount".to_string(),
};
let res = app.execute_contract(Addr::unchecked(ADMIN), Addr::unchecked(MINTER), &msg, &[]);
assert_eq!(res.is_ok(), false);
assert!(!res.is_ok());
}

#[test]
Expand Down

0 comments on commit d13e36f

Please sign in to comment.