Index: firmware/App/Modes/ConsumableSelfTest.c =================================================================== diff -u -r19a8bf98a7154e24c35da25225d4b55bf70ddd09 -rd558c3058a027d8f4407c7bb882505e30225a7f9 --- firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision 19a8bf98a7154e24c35da25225d4b55bf70ddd09) +++ firmware/App/Modes/ConsumableSelfTest.c (.../ConsumableSelfTest.c) (revision d558c3058a027d8f4407c7bb882505e30225a7f9) @@ -107,14 +107,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;