Browse Source

[PORT] fix imports

pull/70/head
Ivan Yelizariev 8 years ago
parent
commit
b4395b9d43
  1. 8
      mail_archives/tests/test_js.py
  2. 8
      mail_sent/tests/test_js.py

8
mail_archives/tests/test_js.py

@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
import openerp.tests
import odoo.tests
@openerp.tests.common.at_install(False)
@openerp.tests.common.post_install(True)
class TestUi(openerp.tests.HttpCase):
@odoo.tests.common.at_install(False)
@odoo.tests.common.post_install(True)
class TestUi(odoo.tests.HttpCase):
def test_01_mail_archives(self):
# wait till page loaded and then click and wait again

8
mail_sent/tests/test_js.py

@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
import openerp.tests
import odoo.tests
@openerp.tests.common.at_install(False)
@openerp.tests.common.post_install(True)
class TestUi(openerp.tests.HttpCase):
@odoo.tests.common.at_install(False)
@odoo.tests.common.post_install(True)
class TestUi(odoo.tests.HttpCase):
def test_01_mail_sent(self):
# wait till page loaded and then click and wait again

Loading…
Cancel
Save