Skip to content

Commit

Permalink
fix: small fixes for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasmpw committed Aug 16, 2023
1 parent 4f3eab2 commit 08a2787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cw721/on-chain-metadata/src/bin/schema.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use cosmwasm_schema::write_api;

use cosmwasm_std::Empty;
use {{crate_name}}::msg::{ExecuteMsg, InstantiateMsg, QueryMsg};
use {{crate_name}}::{ExecuteMsg, InstantiateMsg, QueryMsg};

fn main() {
write_api! {
Expand Down
2 changes: 1 addition & 1 deletion cw721/on-chain-metadata/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ mod tests {
.unwrap();

let token_id = "Enterprise";
let mint_msg = ExecuteMsg::Mint{
let mint_msg = ExecuteMsg::Mint {
token_id: token_id.to_string(),
owner: "john".to_string(),
token_uri: Some("https://starships.example.com/Starship/Enterprise.json".into()),
Expand Down

0 comments on commit 08a2787

Please sign in to comment.