From a0ead2ba812735c2d1edd660b8608f8cb52cea5d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 27 Apr 2008 13:15:03 +0100 Subject: [PATCH] exercise make_home() Organization: Straylight/Edgeware From: Richard Kettlewell --- tests/dtest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/dtest.py b/tests/dtest.py index 62cf74c..9439bce 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -169,7 +169,7 @@ def bindable(p): def default_config(encoding="UTF-8"): """Write the default config""" open("%s/config" % testroot, "w").write( - """home %s + """home %s/home collection fs %s %s/tracks scratch %s/scratch.ogg gap 0 @@ -231,7 +231,7 @@ Start the daemon.""" time.sleep(1) print " starting daemon" # remove the socket if it exists - socket = "%s/socket" % testroot + socket = "%s/home/socket" % testroot try: os.remove(socket) except: -- [mdw]