Skip to content

Commit de97f00

Browse files
committed
less surprising use of abspath
1 parent 7e76072 commit de97f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SKIP_FROM_DESCRIPTOR = bool(os.environ.get('SKIP_FROM_DESCRIPTOR'))
2020

2121
class MagicTest(unittest.TestCase):
22-
TESTDATA_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'testdata')
22+
TESTDATA_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), 'testdata'))
2323

2424
def test_version(self):
2525
try:

0 commit comments

Comments
 (0)