Skip to content

Commit

Permalink
codedownSearcher -> searcher
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Sep 27, 2024
1 parent ceac5fa commit c051546
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion codedown.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ rec {

everythingEnv = evaluateConfig everythingConfig;

codedownSearcher = common.searcher' {
searcher = common.searcher' {
# Note that we deliberately don't include "testing" packages in the searcher
packages = everythingEnv.config.builtKernels
// (lib.mapAttrs' (n: v: lib.nameValuePair ("shells." + n) v) everythingEnv.config.builtShells)
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# inherit codedown;

# Tests use flake to do packageSearch builds
inherit (codedown) codedownSearcher;
inherit (codedown) searcher;
allSettingsSchemas = pkgsStable.callPackage ./nix/all-settings-schemas.nix { inherit (sampleOutputs) sample_environments; };

# For .envrc
Expand Down
2 changes: 1 addition & 1 deletion tests/app/Spec/Tests/Searchers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TestLib.Types

tests :: SimpleSpec
tests = describe "Searchers" $ do
it "searcher has some results" $ testSearcherHasNonemptyResults "codedownSearcher"
it "searcher has some results" $ testSearcherHasNonemptyResults "searcher"

main :: IO ()
main = runSandwichWithCommandLineArgs Sandwich.defaultOptions $
Expand Down

0 comments on commit c051546

Please sign in to comment.