Skip to content

Commit

Permalink
fix(tests): remove debug leftover (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabelluardo committed Mar 6, 2023
1 parent fd51194 commit 45ab773
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions crates/node-maintainer/tests/resolver_basic.rs
Expand Up @@ -203,8 +203,6 @@ async fn nesting_sibling_conflict() -> Result<()> {
.resolve_spec("a@^1")
.await?;

nm.write_lockfile("./package-lock.kdl").await?;

assert_eq!(
nm.to_kdl()?.to_string(),
r#"// This file is automatically generated and not intended for manual editing.
Expand Down
2 changes: 1 addition & 1 deletion src/commands/view.rs
Expand Up @@ -43,7 +43,7 @@ impl OroCommand for ViewCmd {
if let Some(root) = self.root {
nassun_opts = nassun_opts.base_dir(root);
}
if let Some(cache) = dbg!(self.cache) {
if let Some(cache) = self.cache {
nassun_opts = nassun_opts.cache(cache);
}
let pkg = nassun_opts.build().resolve(&self.pkg).await?;
Expand Down

0 comments on commit 45ab773

Please sign in to comment.