Index: firmware/App/Modes/ConsumableSelfTest.c =================================================================== diff -u -r491bddb51ce331490567666795549c17f78a0e68 -r585e01a1d143a900ec37e1204a0a048ab6f86f53 --- firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision 491bddb51ce331490567666795549c17f78a0e68) +++ firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision 585e01a1d143a900ec37e1204a0a048ab6f86f53) @@ -108,14 +108,14 @@ consumableInstallConfirmed = FALSE; #ifndef _RELEASE_ - if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_CONSUMABLES_TESTS ) != SW_CONFIG_ENABLE_VALUE ) + if ( SW_CONFIG_ENABLE_VALUE == getSoftwareConfigStatus( SW_CONFIG_DISABLE_CONSUMABLES_TESTS ) ) { - currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_FILL_CMD_STATE; + currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_COMPLETE_STATE; } else #endif { - currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_COMPLETE_STATE; + currentConsumableSelfTestState = CONSUMABLE_SELF_TESTS_FILL_CMD_STATE; } } break;