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_remoteid_test.go | |
parent | 3478513076477d0f19eaeaf441f29949a9f6bc92 (diff) |
dhcpv6: move option code and length marshaling to Options.ToBytes.
Diffstat (limited to 'dhcpv6/option_remoteid_test.go')
-rw-r--r-- | dhcpv6/option_remoteid_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dhcpv6/option_remoteid_test.go b/dhcpv6/option_remoteid_test.go index bc13d43..51566e3 100644 --- a/dhcpv6/option_remoteid_test.go +++ b/dhcpv6/option_remoteid_test.go @@ -28,8 +28,7 @@ func TestOptRemoteId(t *testing.T) { func TestOptRemoteIdToBytes(t *testing.T) { remoteId := []byte("DSLAM01 eth2/1/01/21") - expected := []byte{00, 37, 00, byte(len(remoteId) + 4), 00, 00, 00, 00} - expected = append(expected, remoteId...) + expected := append([]byte{0, 0, 0, 0}, remoteId...) opt := OptRemoteId{ remoteId: remoteId, } |