diff options
author | Chris Koch <chrisko@google.com> | 2023-02-18 14:09:14 -0800 |
---|---|---|
committer | Chris K <c@chrisko.ch> | 2023-02-18 23:57:24 -0800 |
commit | 8b3544ec108e0a730423f0027d03ac80e4b08ad0 (patch) | |
tree | 1b3b83c6e00cd43db7a49c9351b891c00b583d01 | |
parent | 10146be7d8494d72e98d40df63cc0d65501e169f (diff) |
Remove superfluous print from test
Signed-off-by: Chris Koch <chrisko@google.com>
-rw-r--r-- | dhcpv6/modifiers_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dhcpv6/modifiers_test.go b/dhcpv6/modifiers_test.go index 1d48086..c0b8139 100644 --- a/dhcpv6/modifiers_test.go +++ b/dhcpv6/modifiers_test.go @@ -1,7 +1,6 @@ package dhcpv6 import ( - "log" "net" "testing" "time" @@ -65,7 +64,6 @@ func TestWithDNS(t *testing.T) { )(&d) require.Equal(t, 1, len(d.Options.Options)) dns := d.Options.DNS() - log.Printf("DNS %+v", dns) require.Equal(t, 2, len(dns)) require.Equal(t, net.ParseIP("fe80::1"), dns[0]) require.Equal(t, net.ParseIP("fe80::2"), dns[1]) |