1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-07-04 09:29:26 +00:00

Remove test (which is now done from vm_area.c)

This commit is contained in:
Peter Evans 2018-01-07 20:08:27 -06:00
parent b2add9c3de
commit 62035d03b8

View File

@ -68,14 +68,3 @@ Test(vm_screen, ycoords)
cr_assert_eq(screen->ycoords, 234);
}
Test(vm_screen, area_set)
{
vm_area area;
vm_area_set(&area, 1, 2, 3, 4);
cr_assert_eq(area.xoff, 1);
cr_assert_eq(area.yoff, 2);
cr_assert_eq(area.width, 3);
cr_assert_eq(area.height, 4);
}