Tools: don't use strict comparison for param fetch all to cope with TYPE one's

This commit is contained in:
Pierre Kancir 2018-08-27 15:29:48 +02:00 committed by Peter Barker
parent 5d317a8ef7
commit e278a09668
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ class AutoTest(ABC):
# yes, exactly equal.
if add_to_context:
self.context_get().parameters.append((name, old_value))
if self.should_fetch_all_for_parameter_change(name.upper()) and value == 1:
if self.should_fetch_all_for_parameter_change(name.upper()) and value != 0:
self.fetch_parameters()
return
self.progress("Param fetch returned incorrect value (%s) vs (%s)"