More METADAPT-A testing that doesnt work :(

This commit is contained in:
Sasha Koshka 2025-01-27 22:36:29 -05:00
parent a47a3599d3
commit 72df1e8d11

View File

@ -73,7 +73,11 @@ func TestConnA(test *testing.T) {
test.Errorf("CLIENT payload not equal")
}
}
_, _, err = trans.Receive()
if !errors.Is(err, io.EOF) {
test.Fatal("CLIENT wrong error:", err)
}
test.Log("CLIENT done")
// TODO test error from trans/connection closed by other side
}