[FIX] listview test shall not assume default color is black

bzr revid: fme@openerp.com-20140425093053-3644kvcz13481fxo
This commit is contained in:
Fabien Meghazi 2014-04-25 11:30:53 +02:00
parent bc4620d2c6
commit 9c58bd5538
1 changed files with 2 additions and 2 deletions

View File

@ -361,8 +361,8 @@ openerp.testing.section('list.edition.onwrite', {
strictEqual(
$fix.find('tbody tr:eq(1)').css('color'), 'rgb(255, 0, 0)',
'shoud have color applied');
strictEqual(
$fix.find('tbody tr:eq(2)').css('color'), 'rgb(0, 0, 0)',
notStrictEqual(
$fix.find('tbody tr:eq(2)').css('color'), 'rgb(255, 0, 0)',
'should have default color applied');
});
});