Skip to content

Commit

Permalink
fix: uncomment all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gagdiez committed Aug 1, 2024
1 parent 7927ebd commit 5e9ec8e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions collections-rs/legacy/tests/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let _ = test_account.call(contract.id(), "init").transact().await?;

// begin tests
// test_vector(&test_account, &contract).await?;
// test_lookup_set(&test_account, &contract).await?;
// test_unordered_set(&test_account, &contract).await?;
// test_lookup_map(&test_account, &contract).await?;
// test_unordered_map(&test_account, &contract).await?;
test_vector(&test_account, &contract).await?;
test_lookup_set(&test_account, &contract).await?;
test_unordered_set(&test_account, &contract).await?;
test_lookup_map(&test_account, &contract).await?;
test_unordered_map(&test_account, &contract).await?;
test_nested(&test_account, &contract).await?;

Ok(())
Expand Down

0 comments on commit 5e9ec8e

Please sign in to comment.