Skip to content

Commit c051546

Browse files
committed
codedownSearcher -> searcher
1 parent ceac5fa commit c051546

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

codedown.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ rec {
4343

4444
everythingEnv = evaluateConfig everythingConfig;
4545

46-
codedownSearcher = common.searcher' {
46+
searcher = common.searcher' {
4747
# Note that we deliberately don't include "testing" packages in the searcher
4848
packages = everythingEnv.config.builtKernels
4949
// (lib.mapAttrs' (n: v: lib.nameValuePair ("shells." + n) v) everythingEnv.config.builtShells)

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# inherit codedown;
2525

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

3030
# For .envrc

tests/app/Spec/Tests/Searchers.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TestLib.Types
1010

1111
tests :: SimpleSpec
1212
tests = describe "Searchers" $ do
13-
it "searcher has some results" $ testSearcherHasNonemptyResults "codedownSearcher"
13+
it "searcher has some results" $ testSearcherHasNonemptyResults "searcher"
1414

1515
main :: IO ()
1616
main = runSandwichWithCommandLineArgs Sandwich.defaultOptions $

0 commit comments

Comments
 (0)