Style fixes

This commit is contained in:
Philip Ridout 2016-08-03 21:10:41 +01:00
parent db00a3980f
commit d9d740ad8b
2 changed files with 2 additions and 2 deletions

View File

@ -106,4 +106,4 @@ class TestLanguages(TestCase):
language = languages.get_language(None) language = languages.get_language(None)
# THEN: None should be returned # THEN: None should be returned
self.assertIsNone(language) self.assertIsNone(language)

View File

@ -84,4 +84,4 @@ class TestBibleDB(TestCase):
mocked_language_form.assert_called_once_with(mocked_wizard) mocked_language_form.assert_called_once_with(mocked_wizard)
mocked_language_form_instance.exec.assert_called_once_with('Bible Name') mocked_language_form_instance.exec.assert_called_once_with('Bible Name')
self.assertEqual(result, 10, 'get_language() should return the id of the language the user has chosen when ' self.assertEqual(result, 10, 'get_language() should return the id of the language the user has chosen when '
'they accept the dialog box') 'they accept the dialog box')