Commit 969cec0a authored by Michal Čihař's avatar Michal Čihař

Fix passed parameter in test

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent b284d964
...@@ -185,7 +185,7 @@ class MultiRepoTest(ViewTestCase): ...@@ -185,7 +185,7 @@ class MultiRepoTest(ViewTestCase):
language_code='cs' language_code='cs'
) )
unit = translation.unit_set.get(source='Hello, world!\n') unit = translation.unit_set.get(source='Hello, world!\n')
unit.translate(self.request, 'Ahoj svete!\n', False) unit.translate(self.request, ['Ahoj svete!\n'], False)
self.assertFalse(translation.do_update(self.request)) self.assertFalse(translation.do_update(self.request))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment