summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/bsdp/bsdp_option_version_test.go
diff options
context:
space:
mode:
authorChristopher Koch <chrisko@google.com>2018-12-29 12:21:34 -0800
committerinsomniac <insomniacslk@users.noreply.github.com>2019-01-11 19:38:21 +0000
commit03a987ca7475df51eb9164e807f9c1929017e08a (patch)
treeec594d8874670e314f9f355e030f8e633849e9d9 /dhcpv4/bsdp/bsdp_option_version_test.go
parent9492662dae0651fd4d6698d35b58ade7300e149e (diff)
dhcpv4: remove unused Option.Length function.
Diffstat (limited to 'dhcpv4/bsdp/bsdp_option_version_test.go')
-rw-r--r--dhcpv4/bsdp/bsdp_option_version_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/dhcpv4/bsdp/bsdp_option_version_test.go b/dhcpv4/bsdp/bsdp_option_version_test.go
index a74ea0e..8b592a8 100644
--- a/dhcpv4/bsdp/bsdp_option_version_test.go
+++ b/dhcpv4/bsdp/bsdp_option_version_test.go
@@ -9,7 +9,6 @@ import (
func TestOptVersionInterfaceMethods(t *testing.T) {
o := OptVersion{Version1_1}
require.Equal(t, OptionVersion, o.Code(), "Code")
- require.Equal(t, 2, o.Length(), "Length")
require.Equal(t, []byte{1, 1}, o.ToBytes(), "ToBytes")
}