Fix tests for pptview - again

This commit is contained in:
Tomas Groth 2014-07-15 11:50:52 +02:00
parent 0a018a59fb
commit e1c00f9689
1 changed files with 2 additions and 2 deletions

View File

@ -203,8 +203,8 @@ class TestPptviewDocument(TestCase):
if os.name == 'nt':
result = instance.load_presentation()
# THEN: The temporary directory should be created and PptviewDocument.load_presentation should return False
self.mock_makedirs.assert_called_once_with(self.temp_folder)
# THEN: The temp folder should be created and PptviewDocument.load_presentation should return False
mock_makedirs.assert_called_once_with(self.temp_folder)
self.assertFalse(result)
def create_titles_and_notes_test(self):