Fix ReadHistoryCommand not reading errors, TDDs.
This commit is contained in:
parent
e790c87940
commit
154902acdc
|
@ -58,9 +58,9 @@ public class ReadHistoryCommand extends BaseCommand {
|
|||
}
|
||||
}
|
||||
|
||||
if (request.pumpErrorHistory == PumpHistoryRequest.SKIP
|
||||
&& request.tddHistory == PumpHistoryRequest.SKIP
|
||||
&& request.tbrHistory == PumpHistoryRequest.SKIP) {
|
||||
if (request.pumpErrorHistory != PumpHistoryRequest.SKIP
|
||||
|| request.tddHistory != PumpHistoryRequest.SKIP
|
||||
|| request.tbrHistory != PumpHistoryRequest.SKIP) {
|
||||
// error history
|
||||
scripter.pressMenuKey();
|
||||
scripter.verifyMenuIsDisplayed(MenuType.ERROR_DATA);
|
||||
|
|
Loading…
Reference in a new issue