From ecad21d8febf642f64467398cabda6284391cac7 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Mon, 23 Sep 2024 16:50:47 -0700 Subject: [PATCH] Fix test of codedownSearcher build --- flake.nix | 2 +- tests/app/Spec/Tests/Searchers.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 2e9da02..e6a47bd 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ # inherit codedown; # Tests use flake to do packageSearch builds - inherit (codedown) kernels; + inherit (codedown) kernels codedownSearcher; # For .envrc nixpkgsPath = pkgsStable.writeShellScriptBin "nixpkgsPath.sh" "echo -n ${pkgsStable.path}"; diff --git a/tests/app/Spec/Tests/Searchers.hs b/tests/app/Spec/Tests/Searchers.hs index 4a3f633..71b069a 100644 --- a/tests/app/Spec/Tests/Searchers.hs +++ b/tests/app/Spec/Tests/Searchers.hs @@ -8,7 +8,7 @@ import TestLib.TestSearchers tests :: TopSpec tests = describe "Searchers" $ do - it "searcher has some results" $ testSearcherHasNonemptyResults ".#codedown.codedownSearcher" + it "searcher has some results" $ testSearcherHasNonemptyResults ".#codedownSearcher" main :: IO () main = runSandwichWithCommandLineArgs Sandwich.defaultOptions tests