Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tasos Bakogiannis committed May 11, 2016
1 parent 6215cfb commit 4d7c8e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openformats/tests/formats/android/test_android.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def test_single_string_skipped(self):
self.assertEquals(source, template)
self.assertEquals(len(stringset), 0)
compiled = self.handler.compile(template, stringset)
self.assertEquals(compiled, source)
self.assertEquals(compiled, u'<resources></resources>')

def test_single_string_array_skipped(self):
source = u'<resources><string-array name="a" /></resources>'
Expand All @@ -654,7 +654,7 @@ def test_single_string_array_skipped(self):
def test_single_string_array_item_skipped(self):
random_key = generate_random_string()
random_string = generate_random_string()
random_openstring = OpenString("{}[0]".format(random_key),
random_openstring = OpenString("{}[1]".format(random_key),
random_string, order=0)
random_hash = random_openstring.template_replacement

Expand Down

0 comments on commit 4d7c8e1

Please sign in to comment.