aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/common.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/common.sh.in b/tests/common.sh.in
index ee0ddfbb6..f327ad727 100644
--- a/tests/common.sh.in
+++ b/tests/common.sh.in
@@ -59,9 +59,9 @@ clearManifests() {
startDaemon() {
# Start the daemon, wait for the socket to appear. !!!
- # ‘nix-worker’ should have an option to fork into the background.
+ # ‘nix-daemon’ should have an option to fork into the background.
rm -f $NIX_STATE_DIR/daemon-socket/socket
- nix-worker --daemon &
+ nix-daemon &
for ((i = 0; i < 30; i++)); do
if [ -e $NIX_STATE_DIR/daemon-socket/socket ]; then break; fi
sleep 1