| Index: client/bin/factory_ui
|
| diff --git a/client/bin/factory_ui b/client/bin/factory_ui
|
| index 0c1c89bf0357cc94a84daf0758f60c09b5da964c..ba0767eb2af038c5597a70223f011437a8e48bb6 100755
|
| --- a/client/bin/factory_ui
|
| +++ b/client/bin/factory_ui
|
| @@ -201,8 +201,10 @@ class UiState():
|
| automated sequences, since there is no other window, the no
|
| active test message is replaced with an updated list of
|
| subtest status.'''
|
| - if test == self.active_test:
|
| + if test is None or test == self.active_test:
|
| return
|
| + factory.log('UI active test -> %s' %
|
| + self._status_map.test_db.get_unique_details(test))
|
| self.active_test = test
|
| self._test_widget_box.remove(self._active_test_widget)
|
| active_widget = (test in self._status_map.test_db.seq_test_set
|
|
|