Change the indentation back to 4

This commit is contained in:
Raoul Snyman 2013-10-02 23:37:00 +02:00
parent 1347ad61d1
commit 316f33c058
7 changed files with 44 additions and 42 deletions

View File

@ -180,6 +180,7 @@ class TestUtils(TestCase):
mocked_get_language.return_value = 'de'
mocked_os.name = 'linux'
unsorted_list = ['Auszug', 'Aushang', '\u00C4u\u00DFerung']
# WHEN: We sort the list and use get_locale_key() to generate the sorting keys
sorted_list = sorted(unsorted_list, key=get_locale_key)

View File

@ -82,7 +82,8 @@ class TestVerseReferenceList(TestCase):
# THEN: The current index should be 0 and the end pointer of the entry should be '2'
self.assertEqual(reference_list.current_index, 0, 'The current index should be 0')
self.assertEqual(reference_list.verse_list[0]['end'], next_verse, 'The end in first entry should be %u' % next_verse)
self.assertEqual(reference_list.verse_list[0]['end'], next_verse,
'The end in first entry should be %u' % next_verse)
def add_another_verse_test(self):
"""