From a0794b03564c6f045c25cc96c93922a43afea367 Mon Sep 17 00:00:00 2001 From: cy Date: Sun, 4 May 2025 01:15:10 -0400 Subject: [PATCH] fix closure test check; rm RUST_LOG envar in devshell --- flake.nix | 1 - tests/path_info.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 01d135a..fb86d40 100644 --- a/flake.nix +++ b/flake.nix @@ -59,7 +59,6 @@ devShells.default = craneLib.devShell { inputsFrom = [ nixcp ]; - RUST_LOG = "nixcp=debug"; RUST_BACKGRACE = 1; # for cpp bindings to work NIX_INCLUDE_PATH = "${lib.getDev pkgs.nix}/include"; diff --git a/tests/path_info.rs b/tests/path_info.rs index 90d113d..57738fd 100644 --- a/tests/path_info.rs +++ b/tests/path_info.rs @@ -33,5 +33,5 @@ async fn closure() { .await .expect("get pathinfo from package"); let closure = path_info.get_closure(&ctx.store).await.unwrap(); - assert_eq!(closure.len(), 466); + assert_eq!(closure.len(), 472); }