From de97f00b128b04de65af2c480c411f4e6d0527b3 Mon Sep 17 00:00:00 2001 From: Adam Hupp Date: Mon, 25 Apr 2022 06:53:12 -0700 Subject: less surprising use of abspath --- test/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.py b/test/test.py index e443b84..624a443 100755 --- a/test/test.py +++ b/test/test.py @@ -19,7 +19,7 @@ import sys SKIP_FROM_DESCRIPTOR = bool(os.environ.get('SKIP_FROM_DESCRIPTOR')) class MagicTest(unittest.TestCase): - TESTDATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'testdata') + TESTDATA_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), 'testdata')) def test_version(self): try: -- cgit v1.2.1