summaryrefslogtreecommitdiffhomepage
path: root/dhcpv4/modifiers_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv4/modifiers_test.go')
-rw-r--r--dhcpv4/modifiers_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/dhcpv4/modifiers_test.go b/dhcpv4/modifiers_test.go
index 15dbebf..6d3976e 100644
--- a/dhcpv4/modifiers_test.go
+++ b/dhcpv4/modifiers_test.go
@@ -49,8 +49,6 @@ func TestUserClassModifier(t *testing.T) {
userClass := WithUserClass([]byte("linuxboot"), false)
d = userClass(d)
expected := []byte{
- 77, // OptionUserClass
- 9, // length
'l', 'i', 'n', 'u', 'x', 'b', 'o', 'o', 't',
}
require.Equal(t, "User Class Information -> linuxboot", d.Options[0].String())
@@ -62,8 +60,6 @@ func TestUserClassModifierRFC(t *testing.T) {
userClass := WithUserClass([]byte("linuxboot"), true)
d = userClass(d)
expected := []byte{
- 77, // OptionUserClass
- 10, // length
9, 'l', 'i', 'n', 'u', 'x', 'b', 'o', 'o', 't',
}
require.Equal(t, "User Class Information -> linuxboot", d.Options[0].String())