Skip to content

Commit

Permalink
fix(argus): bump webc version and make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xdoardo committed May 22, 2024
1 parent 5ab5880 commit ba8d314
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ wasmer-config = { path = "./lib/config" }
wasmer-wasix = { path = "./lib/wasix" }

# Wasmer-owned crates
webc = { version = "6.0.0-alpha8", default-features = false, features = ["package"] }
webc = { version = "6.0.0-alpha9", default-features = false, features = ["package"] }
edge-schema = { version = "=0.1.0" }
shared-buffer = "0.1.4"

Expand Down
6 changes: 2 additions & 4 deletions tests/wasmer-argus/src/argus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl Argus {

pool.spawn(async move {
let _permit = permit;
let ret = match Argus::test(count, c, &pkg, bar, successes_sx, failures_sx).await {
match Argus::test(count, c, &pkg, bar, successes_sx, failures_sx).await {
Err(e) => {
failures.lock().await.add_assign(1);
Err(e)
Expand All @@ -88,9 +88,7 @@ impl Argus {
failures.lock().await.add_assign(1);
Ok(())
}
};

ret
}
});

count += 1;
Expand Down

0 comments on commit ba8d314

Please sign in to comment.