[FIX] web_tests dont assume an act_window

if mail module is installed it could be a client action
This commit is contained in:
Antony Lesuisse 2014-07-01 16:49:53 +02:00
parent c0c6ff68ea
commit 3c7c8f904f
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ class TestUi(openerp.tests.HttpCase):
def test_03_js_public(self):
self.phantom_js('/',"console.log('ok')","console")
def test_04_js_admin(self):
self.phantom_js('/web',"console.log('ok')","openerp.client.action_manager.inner_widget.views.form", login='admin')
self.phantom_js('/web',"console.log('ok')","openerp.client.action_manager.inner_widget", login='admin')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: