aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMadeline Haraj <madeline.haraj@obsidian.systems>2021-08-06 12:36:03 -0400
committerMadeline Haraj <madeline.haraj@obsidian.systems>2021-08-06 12:36:03 -0400
commitd56ddbb99965dc46cb80b05857588624c249aba6 (patch)
tree0a1ea1f4e5758188f7b165fd2242e400fa4a62d4 /tests
parentcb1ffb7789365d77e310a267dcc63c7518127045 (diff)
Fix disabled case in local store test
Diffstat (limited to 'tests')
-rw-r--r--tests/local-store.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/local-store.sh b/tests/local-store.sh
index 4ec3d64b0..0247346f1 100644
--- a/tests/local-store.sh
+++ b/tests/local-store.sh
@@ -15,6 +15,5 @@ PATH1=$(nix path-info --store ./x $CORRECT_PATH)
PATH2=$(nix path-info --store "$PWD/x" $CORRECT_PATH)
[ $CORRECT_PATH == $PATH2 ]
-# FIXME we could also test the query parameter version:
-# PATH3=$(nix path-info --store "local?store=$PWD/x" $CORRECT_PATH)
-# [ $CORRECT_PATH == $PATH3 ]
+PATH3=$(nix path-info --store "local?root=$PWD/x" $CORRECT_PATH)
+[ $CORRECT_PATH == $PATH3 ]