Skip to content

Commit

Permalink
Checking future print
Browse files Browse the repository at this point in the history
  • Loading branch information
gvwilson committed Jul 21, 2016
1 parent aa316f8 commit 9be4b22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/test_lesson_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

class TestFileList(unittest.TestCase):
def setUp(self):
self.reporter = util.Reporter(None) ## TODO: refactor reporter class.
self.reporter = util.Reporter() ## TODO: refactor reporter class.

def test_file_list_has_expected_entries(self):
# For first pass, simply assume that all required files are present
all_filenames = [item[1].replace('%', '')
for item in lesson_check.REQUIRED_FILES]
all_filenames = [filename.replace('%', '')
for filename in lesson_check.REQUIRED_FILES]

lesson_check.check_fileset('', self.reporter, all_filenames)
self.assertEqual(len(self.reporter.messages), 0)
Expand Down

0 comments on commit 9be4b22

Please sign in to comment.