From c1d58e2d1d43391c8cfb7f5eae564ed71942fa27 Mon Sep 17 00:00:00 2001 From: David Colburn Date: Mon, 25 Nov 2024 22:04:18 -0800 Subject: [PATCH] != --- test/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration.go b/test/integration.go index 73a47b87..7432ce4a 100644 --- a/test/integration.go +++ b/test/integration.go @@ -138,7 +138,7 @@ func (r *Runner) checkUpdate(t *testing.T, egressID string, status livekit.Egres func (r *Runner) checkStreamUpdate(t *testing.T, egressID string, expected map[string]livekit.StreamInfo_Status) { for { info := r.getUpdate(t, egressID) - if len(expected) < len(info.StreamResults) { + if len(expected) != len(info.StreamResults) { continue }