Changeset 83cb672 in mainline


Ignore:
Timestamp:
2020-05-11T15:42:08Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6feccae
Parents:
c11ee605
Message:

Fix display server unit test

Window dpos does not change until after button release now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/test/window.c

    rc11ee605 r83cb672  
    220220
    221221        PCUT_ASSERT_INT_EQUALS(dsw_moving, wnd->state);
    222         PCUT_ASSERT_INT_EQUALS(11, wnd->dpos.x);
    223         PCUT_ASSERT_INT_EQUALS(12, wnd->dpos.y);
     222        /* Window position does not update until after release */
     223        PCUT_ASSERT_INT_EQUALS(10, wnd->dpos.x);
     224        PCUT_ASSERT_INT_EQUALS(10, wnd->dpos.y);
    224225
    225226        event.type = POS_RELEASE;
Note: See TracChangeset for help on using the changeset viewer.