summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_prefixdelegation_test.go
diff options
context:
space:
mode:
authorChristopher Koch <c@chrisko.ch>2019-01-20 20:28:24 +0000
committerinsomniac <insomniacslk@users.noreply.github.com>2019-01-26 23:34:26 +0000
commit64f29461718b0dac77d8156ceceacce086fe14b2 (patch)
tree17146477afbf8da8e0e0535a330ffd18dbb93a3c /dhcpv6/option_prefixdelegation_test.go
parentda69dad309583925ff4f8d0454bd0fb5bb6a1402 (diff)
dhcpv6: remove unnecessary Length function
Diffstat (limited to 'dhcpv6/option_prefixdelegation_test.go')
-rw-r--r--dhcpv6/option_prefixdelegation_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/dhcpv6/option_prefixdelegation_test.go b/dhcpv6/option_prefixdelegation_test.go
index 377ca3d..802a3a6 100644
--- a/dhcpv6/option_prefixdelegation_test.go
+++ b/dhcpv6/option_prefixdelegation_test.go
@@ -20,7 +20,6 @@ func TestOptIAForPrefixDelegationParseOptIAForPrefixDelegation(t *testing.T) {
}
opt, err := ParseOptIAForPrefixDelegation(data)
require.NoError(t, err)
- require.Equal(t, len(data), opt.Length())
require.Equal(t, OptionIAPD, opt.Code())
require.Equal(t, [4]byte{1, 0, 0, 0}, opt.IaId)
require.Equal(t, uint32(1), opt.T1)