From eade7dafe031b68f52253d84d3c9486ca09dadcc Mon Sep 17 00:00:00 2001 From: Paul Makepeace Date: Thu, 10 Oct 2013 15:40:23 +0500 Subject: [PATCH] Use full path to test data --- tests/refinetest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/refinetest.py b/tests/refinetest.py index 6495f29..74085ec 100644 --- a/tests/refinetest.py +++ b/tests/refinetest.py @@ -17,8 +17,7 @@ import unittest from google.refine import refine -PATH_TO_TEST_DATA = os.path.join('tests', 'data') - +PATH_TO_TEST_DATA = os.path.join(os.path.dirname(__file__), 'data') #noinspection PyPep8Naming class RefineTestCase(unittest.TestCase):