Skip to content
Snippets Groups Projects
Commit f62503a5 authored by Aaron Bohy's avatar Aaron Bohy
Browse files

[FIX] crm: properly call super in forecast tests

Before this commit, those tests sometimes failed because we didn't
correctly wait for the load and reload promises.

Part-of: odoo/odoo#78621
parent 78762d0a
No related branches found
No related tags found
No related merge requests found
......@@ -191,12 +191,12 @@ QUnit.module("Views", (hooks) => {
patchWithCleanup(AbstractModel.prototype, {
async load(params) {
this._super(...arguments);
assert.deepEqual(params.domain, expectedDomains.shift());
return this._super(...arguments);
},
async reload(_, params) {
this._super(...arguments);
assert.deepEqual(params.domain, expectedDomains.shift());
return this._super(...arguments);
},
});
......
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