Skip to content
Snippets Groups Projects
Unverified Commit 53f6552d authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] tests: migrate to the new api

Leftover references to cr, uid
parent f9f4bba2
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,6 @@
Assert we have loaded the correct number of entries for the given source string.
-
!python {model: ir.translation }: |
ids = self.search(cr, uid,
translations = self.search(
[('src', '=', '1XBUO5PUYH2RYZSA1FTLRYS8SPCNU1UYXMEYMM25ASV7JC2KTJZQESZYRV9L8CGB')])
assert len(ids) == 2, "2 entries are expected, got %s instead." % len(ids)
assert len(translations) == 2, "2 entries are expected, got %s instead." % len(translations)
......@@ -10,6 +10,6 @@ class TestTermCount(common.TransactionCase):
Just make sure we have as many translation entries as we wanted.
"""
odoo.tools.trans_load(self.cr, 'test_translation_import/i18n/fr.po', 'fr_FR', verbose=False)
ids = self.registry('ir.translation').search(self.cr, self.uid,
ids = self.env['ir.translation'].search(
[('src', '=', '1XBUO5PUYH2RYZSA1FTLRYS8SPCNU1UYXMEYMM25ASV7JC2KTJZQESZYRV9L8CGB')])
self.assertEqual(len(ids), 2)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment