From 7372b3210d1b74b6a2808fb36280751c87c68f9a Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Wed, 5 Apr 2023 12:21:19 +0200 Subject: [PATCH] Fix test --- http/handler/api/restream_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/handler/api/restream_test.go b/http/handler/api/restream_test.go index 87c20ffb..c75ddbf4 100644 --- a/http/handler/api/restream_test.go +++ b/http/handler/api/restream_test.go @@ -368,7 +368,7 @@ func TestProcessReportAt(t *testing.T) { err = json.Unmarshal(response.Raw, &x) require.NoError(t, err) - require.Equal(t, 2, len(x.History)) + require.Equal(t, 1, len(x.History)) } func TestSearchReportHistory(t *testing.T) {