[FIX] adjust the tests after changes to the searchview

* oe_searchview_custom has been split in oe_searchview_custom and
oe_searchview_filter: a test need to take that into account
* in adjust_top, the parent might not have a $ method.
This commit is contained in:
Géry Debongnie 2014-05-26 16:43:04 +02:00
parent d657f0f598
commit bb8b659ce3
2 changed files with 3 additions and 3 deletions

View File

@ -443,7 +443,7 @@ instance.web.SearchView = instance.web.Widget.extend(/** @lends instance.web.Sea
adjust_top: function () {
// hack to adjust the top of the view manager body to the actual header height
var parent = this.getParent();
if (parent) {
if (parent && parent.$) {
var h = parent.$(".oe_view_manager_header").height() + 1;
parent.$(".oe_view_manager_body").css('top', h + 'px');
}

View File

@ -1329,10 +1329,10 @@ openerp.testing.section('search.filters.saved', {
});
return view.appendTo($fix)
.then(function () {
$fix.find('.oe_searchview_custom input#oe_searchview_custom_input')
$fix.find('.oe_searchview_savefilter input#oe_searchview_custom_input')
.val("filter name")
.end()
.find('.oe_searchview_custom button').click();
.find('.oe_searchview_savefilter button').click();
return done.promise();
});
});