Bug 1431753 - Fix condition when verification and per-test coverage are not enabled. r=me

This commit is contained in:
Marco Castelluccio 2018-04-19 23:56:50 +02:00
Родитель 219ed0cc06
Коммит 3988db8b4e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -473,7 +473,7 @@ class AndroidEmulatorTest(TestingMixin, EmulatorMixin, BaseScript, MozbaseMixin,
try_options, try_tests = self.try_args(self.test_suite)
cmd.extend(try_options)
if self.verify_enabled or self.per_test_coverage:
if not self.verify_enabled and not self.per_test_coverage:
cmd.extend(self.query_tests_args(
self.config["suite_definitions"][self.test_suite].get("tests"),
None,