From beadf7f94f9fdffa6c988f311c5cc322154361b7 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Fri, 23 May 2014 13:10:34 +0200 Subject: [PATCH] Make the environment variable TEST_DIR match the python var Having things inconsistent just leads to confusion. --- test/test_xattr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_xattr.py b/test/test_xattr.py index c1e25b4..05269cd 100644 --- a/test/test_xattr.py +++ b/test/test_xattr.py @@ -17,7 +17,7 @@ else: PY3K = False EMPTY_NS = '' -TEST_DIR = os.environ.get("TESTDIR", ".") +TEST_DIR = os.environ.get("TEST_DIR", ".") TEST_IGNORE_XATTRS = os.environ.get("TEST_IGNORE_XATTRS", "") if TEST_IGNORE_XATTRS == "": TEST_IGNORE_XATTRS = [] -- 2.39.5