Bug 1320761 - assert failure on beta-to-nightly mozconfig comparison; r=gps

MozReview-Commit-ID: DPt4namtWAr

--HG--
extra : rebase_source : 82c9d222576c0a377afd221c22c0398fa3396315
This commit is contained in:
Mike Shal 2016-11-28 14:54:55 -05:00
Родитель 9a9f2caf59
Коммит 75f6b1620b
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -52,16 +52,14 @@ class TestCompareMozconfigs(unittest.TestCase):
whitelist_path, '--no-download',
platform + ',' + beta_mozconfig_path +
',' + nightly_mozconfig_path])
self.assertEqual(0, ret_code)
if ret_code > 0:
return ret_code
log.info("Comparing release against nightly mozconfigs")
ret_code = subprocess.call([python_exe, script_path, '--whitelist',
whitelist_path, '--no-download',
platform + ',' + release_mozconfig_path +
',' + nightly_mozconfig_path])
self.assertEqual(0, ret_code)
if __name__ == '__main__':