From 779abfbcd1e6058d7f82ce445454f7fd0abb39d9 2012-03-21 14:11:17 From: slojo404 Date: 2012-03-21 14:11:17 Subject: [PATCH] clean up --- diff --git a/tests/test_rst2ipynb.py b/tests/test_rst2ipynb.py index d30cb26..65a0b4f 100644 --- a/tests/test_rst2ipynb.py +++ b/tests/test_rst2ipynb.py @@ -1,11 +1,12 @@ import os import errno +import os.path import subprocess import nose.tools as nt -test_rst_fname = 'tests/tutorial.rst.ref' -ref_ipynb_fname = 'tests/tutorial.ipynb.ref' -test_generate_ipynb_fname = 'tests/tutorial.ipynb' +test_rst_fname = os.path.join('tests', 'tutorial.rst.ref') +ref_ipynb_fname = os.path.join('tests', 'tutorial.ipynb.ref') +test_generate_ipynb_fname = os.path.join('tests', 'tutorial.ipynb') def clean_dir():