Skip to content

Commit

Permalink
test: remove commented out test
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvdplas committed Jul 31, 2024
1 parent b164998 commit 12e1cf9
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions pop-api/integration-tests/src/fungibles/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,20 +545,3 @@ fn burn_works() {
assert_eq!(burn(addr.clone(), asset, BOB, amount), Err(Module { index: 52, error: 16 }));
});
}

// #[test]
// #[ignore]
// fn asset_exists_works() {
// new_test_ext().execute_with(|| {
// let _ = env_logger::try_init();
// let addr =
// instantiate(CONTRACT, INIT_VALUE, vec![]);
//
// // No tokens in circulation.
// assert_eq!(Assets::asset_exists(ASSET_ID), asset_exists(addr.clone(), ASSET_ID));
//
// // Tokens in circulation.
// create_asset(addr.clone(), ASSET_ID, 1);
// assert_eq!(Assets::asset_exists(ASSET_ID), asset_exists(addr, ASSET_ID));
// });
// }

0 comments on commit 12e1cf9

Please sign in to comment.