Remove logs

This commit is contained in:
Till Faelligen 2022-10-21 10:43:49 +02:00
parent 58047f55b5
commit 1518087d0a
No known key found for this signature in database
GPG key ID: 3DF82D8AB9211D4E

View file

@ -372,7 +372,6 @@ func TestSendPDUOnSuccessRemovedFromDB(t *testing.T) {
}() }()
ev := mustCreatePDU(t) ev := mustCreatePDU(t)
t.Logf("Queues: %+v", queues)
err := queues.SendEvent(ev, "localhost", []gomatrixserverlib.ServerName{destination}) err := queues.SendEvent(ev, "localhost", []gomatrixserverlib.ServerName{destination})
assert.NoError(t, err) assert.NoError(t, err)
@ -924,8 +923,6 @@ func TestSendPDUAndEDUBatches(t *testing.T) {
ev := mustCreatePDU(t) ev := mustCreatePDU(t)
headeredJSON, _ := json.Marshal(ev) headeredJSON, _ := json.Marshal(ev)
nid, _ := db.StoreJSON(pc.Context(), string(headeredJSON)) nid, _ := db.StoreJSON(pc.Context(), string(headeredJSON))
t.Logf("DB: %+v", db)
t.Logf("Destinations: %+v", destinations)
err := db.AssociatePDUWithDestinations(pc.Context(), destinations, nid) err := db.AssociatePDUWithDestinations(pc.Context(), destinations, nid)
assert.NoError(t, err, "failed to associate PDU with destinations") assert.NoError(t, err, "failed to associate PDU with destinations")
} }