Remove logging

This commit is contained in:
Till Faelligen 2023-07-11 10:56:38 +02:00
parent 24fb5699aa
commit dda77adb75
No known key found for this signature in database
GPG key ID: ACCDC9606D472758

View file

@ -250,9 +250,6 @@ func TestGetEventsInRangeWithTopologyTokenNoEventsForFilter(t *testing.T) {
paginatedEvents, err := snapshot.GetEventsInTopologicalRange(ctx, &from, &to, r.ID, filter, true)
assert.Equal(t, shared.ErrNoEventsForFilter, err)
assert.Nil(t, paginatedEvents)
for _, x := range paginatedEvents {
t.Logf("EventType: %s", x.Type())
}
})
})
}