Skip to content

Commit

Permalink
Unit tests: fixup enable display on/off handling in actdead
Browse files Browse the repository at this point in the history
Fix unit tests after 822118a ([display] enable display on/off handling
in actdead)
  • Loading branch information
martyone committed Nov 14, 2013
1 parent d548f70 commit d97c082
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/ut/ut_display_filter.c
Expand Up @@ -118,15 +118,15 @@ static struct ut_check_display_state_filter_data

} ut_check_display_state_filter_data[] = {
/* Ignore display-on requests during transition to shutdown
* and reboot, when in acting dead and when system state is unknown */
* and reboot, and when system state is unknown */
DATA( SHUTDOWN, 1, OFF , 0, 0, OFF, ON , OFF ),
DATA( REBOOT , 1, OFF , 0, 0, OFF, ON , OFF ),
DATA( ACTDEAD , 1, OFF , 0, 0, OFF, ON , OFF ),
DATA( UNDEF , 1, OFF , 0, 0, OFF, ON , OFF ),
/* Do not ignore display-on request during transition when in acting
* dead and alarm is ringing or alarm UI is visible */
* dead */
DATA( SHUTDOWN, 1, RINGING, 0, 0, OFF, ON , OFF ),
DATA( REBOOT , 1, VISIBLE, 0, 0, OFF, ON , OFF ),
DATA( ACTDEAD , 1, OFF, 0, 0, OFF, ON , ON ),
DATA( ACTDEAD , 1, RINGING, 0, 0, OFF, ON , ON ),
DATA( ACTDEAD , 1, VISIBLE, 0, 0, OFF, ON , ON ),
/* Above mentioned only applies during transition */
Expand Down

0 comments on commit d97c082

Please sign in to comment.