Browse Source

Merge pull request #798 from petabytestorage/fix-test-uncommon-names

fix test using uncommon names
pull/799/head
Ethan Buchman 7 years ago
committed by GitHub
parent
commit
7c85f15a6c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      p2p/netaddress_test.go

+ 3
- 3
p2p/netaddress_test.go View File

@ -31,9 +31,9 @@ func TestNewNetAddressString(t *testing.T) {
}{
{"127.0.0.1:8080", true},
// {"127.0.0:8080", false},
{"a", false},
{"127.0.0.1:a", false},
{"a:8080", false},
{"notahost", false},
{"127.0.0.1:notapath", false},
{"notahost:8080", false},
{"8082", false},
{"127.0.0:8080000", false},
}


Loading…
Cancel
Save