Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
53f6552d
Unverified
Commit
53f6552d
authored
8 years ago
by
Martin Trigaux
Browse files
Options
Downloads
Patches
Plain Diff
[FIX] tests: migrate to the new api
Leftover references to cr, uid
parent
f9f4bba2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
odoo/tests/addons/test_translation_import/tests.yml
+2
-2
2 additions, 2 deletions
odoo/tests/addons/test_translation_import/tests.yml
odoo/tests/addons/test_translation_import/tests/test_term_count.py
+1
-1
1 addition, 1 deletion
...s/addons/test_translation_import/tests/test_term_count.py
with
3 additions
and
3 deletions
odoo/tests/addons/test_translation_import/tests.yml
+
2
−
2
View file @
53f6552d
...
...
@@ -8,6 +8,6 @@
Assert we have loaded the correct number of entries for the given source string.
-
!python
{
model
:
ir.translation
}
:
|
id
s = self.search(
cr, uid,
translation
s = self.search(
[('src', '=', '1XBUO5PUYH2RYZSA1FTLRYS8SPCNU1UYXMEYMM25ASV7JC2KTJZQESZYRV9L8CGB')])
assert len(
id
s) == 2, "2 entries are expected, got %s instead." % len(
id
s)
assert len(
translation
s) == 2, "2 entries are expected, got %s instead." % len(
translation
s)
This diff is collapsed.
Click to expand it.
odoo/tests/addons/test_translation_import/tests/test_term_count.py
+
1
−
1
View file @
53f6552d
...
...
@@ -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
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment