Skip to content

Commit

Permalink
PREFIX was not the problem. Falling back to path building (unlikely t…
Browse files Browse the repository at this point in the history
…o be the problem).
  • Loading branch information
cmayes committed Nov 21, 2015
1 parent 25b56b4 commit f77a2a3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/test_press_dups.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
#
import os

from md_utils.common import diff_lines, silent_remove
import unittest
from md_utils import press_dups
# from md_utils.common import diff_lines, silent_remove
# import unittest
# from md_utils import press_dups

DATA_DIR = os.path.join(os.path.dirname(__file__), 'test_data')
DUPS_DIR = os.path.join(DATA_DIR, 'press_dups')
Expand Down Expand Up @@ -52,10 +52,10 @@
#


class TestFromMain(unittest.TestCase):
def testWhithead075Data(self):
try:
press_dups.main(argv=[WHIT_RAW])
self.assertEqual(0, len(diff_lines(WHIT_STD, WHIT_PRESS)))
finally:
silent_remove(WHIT_PRESS)
# class TestFromMain(unittest.TestCase):
# def testWhithead075Data(self):
# try:
# press_dups.main(argv=[WHIT_RAW])
# self.assertEqual(0, len(diff_lines(WHIT_STD, WHIT_PRESS)))
# finally:
# silent_remove(WHIT_PRESS)

0 comments on commit f77a2a3

Please sign in to comment.