diff options
author | Christopher Koch <c@chrisko.ch> | 2019-01-20 20:13:51 +0000 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-26 23:34:26 +0000 |
commit | da69dad309583925ff4f8d0454bd0fb5bb6a1402 (patch) | |
tree | 59ab134698084993a6254afe70ff8035b7b4f655 /dhcpv6/option_serverid_test.go | |
parent | 3478513076477d0f19eaeaf441f29949a9f6bc92 (diff) |
dhcpv6: move option code and length marshaling to Options.ToBytes.
Diffstat (limited to 'dhcpv6/option_serverid_test.go')
-rw-r--r-- | dhcpv6/option_serverid_test.go | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/dhcpv6/option_serverid_test.go b/dhcpv6/option_serverid_test.go index 72b1e33..2cd37a3 100644 --- a/dhcpv6/option_serverid_test.go +++ b/dhcpv6/option_serverid_test.go @@ -30,8 +30,6 @@ func TestOptServerIdToBytes(t *testing.T) { }, } expected := []byte{ - 0, 2, // OptionServerID - 0, 10, // length 0, 3, // DUID_LL 0, 1, // hwtype ethernet 5, 4, 3, 2, 1, 0, // hw addr @@ -45,13 +43,9 @@ func TestOptServerIdDecodeEncode(t *testing.T) { 0, 1, // hwtype ethernet 5, 4, 3, 2, 1, 0, // hw addr } - expected := append([]byte{ - 0, 2, // OptionServerID - 0, 10, // length - }, data...) opt, err := ParseOptServerId(data) require.NoError(t, err) - require.Equal(t, expected, opt.ToBytes()) + require.Equal(t, data, opt.ToBytes()) } func TestOptionServerId(t *testing.T) { |