Add missing resetSignalHandler method to TestTty

This commit is contained in:
VÖRÖSKŐI András 2025-01-13 21:10:24 +01:00 committed by Tim Culverhouse
parent 2d5cd811a4
commit 8462b6276e

View file

@ -799,4 +799,8 @@ pub const TestTty = struct {
pub fn nextEvent(_: *Tty, _: *Parser, _: ?std.mem.Allocator) !Event {
return error.SkipZigTest;
}
pub fn resetSignalHandler() void {
return;
}
};