Need a different approach for platform-specific tests

This commit is contained in:
Jeffrey S. Smith 2013-09-11 10:09:36 -05:00
parent 334cef478d
commit cb62bf5936
1 changed files with 0 additions and 4 deletions

View File

@ -8,8 +8,6 @@ from mock import patch
from openlp.core.utils import clean_filename, get_filesystem_encoding, _get_frozen_path, get_locale_key, \
get_natural_key, split_filename
import os
class TestUtils(TestCase):
"""
@ -122,8 +120,6 @@ class TestUtils(TestCase):
# THEN: We get a properly sorted list
test_passes = sorted(unsorted_list, key=get_locale_key) == ['Aushang', '\u00C4u\u00DFerung', 'Auszug']
assert test_passes, 'Strings should be sorted properly'
if os.name != 'nt':
del get_locale_key_windows_test
def get_locale_key_linux_test(self):