From 015a072b0b22f1c44e20c6dffd4d3de6050e290f Mon Sep 17 00:00:00 2001 From: Kevin F Date: Tue, 27 Sep 2022 19:08:58 +0000 Subject: [PATCH] Fix test writing to wrong test dir directory --- tests/integration-tests/no-command-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-tests/no-command-run.py b/tests/integration-tests/no-command-run.py index 6fd0cadd..5bb906c8 100644 --- a/tests/integration-tests/no-command-run.py +++ b/tests/integration-tests/no-command-run.py @@ -3,7 +3,7 @@ import os from subprocess import Popen, PIPE import uuid -TEST_DIR = 'testdata/%s-%s' % (uuid.uuid4(), os.path.basename(__file__)) + '/' +TEST_DIR = '../testdata/%s-%s' % (uuid.uuid4(), os.path.basename(__file__)) + '/' os.environ["ONIONR_HOME"] = TEST_DIR print(f'running integration test for {__file__}')