mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-03 17:26:57 +01:00
brontide test: fix go 1.15 vet check
This commit is contained in:
parent
cc29e1cce8
commit
8ca5342b37
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ func TestConnectionCorrectness(t *testing.T) {
|
|||
|
||||
// Test out some message full-message reads.
|
||||
for i := 0; i < 10; i++ {
|
||||
msg := []byte("hello" + string(i))
|
||||
msg := []byte(fmt.Sprintf("hello%d", i))
|
||||
|
||||
if _, err := localConn.Write(msg); err != nil {
|
||||
t.Fatalf("remote conn failed to write: %v", err)
|
||||
|
|
Loading…
Add table
Reference in a new issue