| Index: client/tests/trace_inputs_smoke_test.py
|
| diff --git a/client/tests/trace_inputs_smoke_test.py b/client/tests/trace_inputs_smoke_test.py
|
| index 51837239f67f9b4a48188713e44ed78b7b357f8f..e5ff6327b4fb5306877f58233516981949660bc8 100755
|
| --- a/client/tests/trace_inputs_smoke_test.py
|
| +++ b/client/tests/trace_inputs_smoke_test.py
|
| @@ -15,7 +15,8 @@ import tempfile
|
| import unicodedata
|
| import unittest
|
|
|
| -ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
| +ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(
|
| + __file__.decode(sys.getfilesystemencoding()))))
|
| sys.path.insert(0, ROOT_DIR)
|
|
|
| import trace_inputs
|
| @@ -24,7 +25,7 @@ from utils import file_path
|
| from utils import threading_utils
|
|
|
|
|
| -FILENAME = os.path.basename(__file__)
|
| +FILENAME = os.path.basename(__file__.decode(sys.getfilesystemencoding()))
|
| REL_DATA = os.path.join(u'tests', 'trace_inputs')
|
| VERBOSE = False
|
|
|
|
|