this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

window: fix tests

+4 -4
+4 -4
src/Window.zig
··· 506 506 }; 507 507 508 508 const ch = parent.initChild(0, 0, 21, 21); 509 - try std.testing.expectEqual(21, ch.width); 510 - try std.testing.expectEqual(21, ch.height); 509 + try std.testing.expectEqual(20, ch.width); 510 + try std.testing.expectEqual(20, ch.height); 511 511 } 512 512 513 513 test "Window size set too big with offset" { ··· 522 522 }; 523 523 524 524 const ch = parent.initChild(10, 10, 21, 21); 525 - try std.testing.expectEqual(21, ch.width); 526 - try std.testing.expectEqual(21, ch.height); 525 + try std.testing.expectEqual(10, ch.width); 526 + try std.testing.expectEqual(10, ch.height); 527 527 } 528 528 529 529 test "Window size nested offsets" {