diff options
author | Christopher Koch <c@chrisko.ch> | 2019-01-20 20:28:24 +0000 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-26 23:34:26 +0000 |
commit | 64f29461718b0dac77d8156ceceacce086fe14b2 (patch) | |
tree | 17146477afbf8da8e0e0535a330ffd18dbb93a3c /dhcpv6/option_vendor_opts_test.go | |
parent | da69dad309583925ff4f8d0454bd0fb5bb6a1402 (diff) |
dhcpv6: remove unnecessary Length function
Diffstat (limited to 'dhcpv6/option_vendor_opts_test.go')
-rw-r--r-- | dhcpv6/option_vendor_opts_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dhcpv6/option_vendor_opts_test.go b/dhcpv6/option_vendor_opts_test.go index 043995d..f6c2b2a 100644 --- a/dhcpv6/option_vendor_opts_test.go +++ b/dhcpv6/option_vendor_opts_test.go @@ -19,7 +19,6 @@ func TestOptVendorOpts(t *testing.T) { expectedOpts.VendorOpts = append(vendorOpts, &OptionGeneric{OptionCode: 1, OptionData: optData}) opt, err := ParseOptVendorOpts(expected) require.NoError(t, err) - require.Equal(t, len(expected), opt.Length()) require.Equal(t, uint32(0xaabbccdd), opt.EnterpriseNumber) require.Equal(t, expectedOpts.VendorOpts, opt.VendorOpts) |