From 9391ec7fb056b1006cdf36f21e3e37c0fa8071bb Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 1 Mar 2026 23:17:56 +0200 Subject: eventloop: inject runtime config instead of flags singleton (task 315) --- internal/eventloop_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/eventloop_test.go') diff --git a/internal/eventloop_test.go b/internal/eventloop_test.go index 9c26372..49ba3e8 100644 --- a/internal/eventloop_test.go +++ b/internal/eventloop_test.go @@ -96,7 +96,7 @@ func TestEventloop(t *testing.T) { inCh := make(chan []byte) outCh := make(chan *event.Pair) - el := newEventLoop() + el := newEventLoop(eventLoopConfig{}) el.printCb = func(ev *event.Pair) { outCh <- ev } go el.run(ctx, inCh) -- cgit v1.2.3