From 1b6cd1d2af3d8205eac4a20477a46f0b966dfcaa Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 20 Apr 2024 00:17:17 +0200 Subject: [PATCH] Revert "tests/test-libstoreconsumer: Ignore config" This reverts commit 62feb5ca09263c78ddb692836228223e5b58d3ae. It runs as part of the functional tests, which control the environment, solving some of the problems a default config has when run in the sandbox. --- tests/functional/test-libstoreconsumer/main.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/functional/test-libstoreconsumer/main.cc b/tests/functional/test-libstoreconsumer/main.cc index efc7f29fc..c61489af6 100644 --- a/tests/functional/test-libstoreconsumer/main.cc +++ b/tests/functional/test-libstoreconsumer/main.cc @@ -15,8 +15,7 @@ int main (int argc, char **argv) std::string drvPath = argv[1]; - // This small program is a test, so we do not want user config to interfere. - initLibStore(false); + initLibStore(); auto store = nix::openStore();