diff --git a/nixide/src/flake/locked_flake.rs b/nixide/src/flake/locked_flake.rs index caf58b8..b0be32e 100644 --- a/nixide/src/flake/locked_flake.rs +++ b/nixide/src/flake/locked_flake.rs @@ -157,7 +157,8 @@ mod tests { .build() .unwrap(); - let flakeref = FlakeRefBuilder::new(format!("path:{}#subthing", tmp_dir.path().display())) + // let flakeref = FlakeRefBuilder::new(format!("path:{}#subthing", tmp_dir.path().display())) // DEBUG + let flakeref = FlakeRefBuilder::new(format!("{}#subthing", tmp_dir.path().display())) .build() .unwrap(); diff --git a/nixide/src/util/panic.rs b/nixide/src/util/panic.rs index f77d83c..0772e31 100644 --- a/nixide/src/util/panic.rs +++ b/nixide/src/util/panic.rs @@ -6,7 +6,6 @@ macro_rules! panic_issue { ) }}; } -pub(crate) use panic_issue; macro_rules! panic_issue_call_failed { () => {{ @@ -16,4 +15,6 @@ macro_rules! panic_issue_call_failed { crate::util::panic_issue!("[nixide] call to `{}` failed with \"{}\"", ::stdext::debug_name!(), format!($($arg),*)) }}; } + +pub(crate) use panic_issue; pub(crate) use panic_issue_call_failed;