summaryrefslogtreecommitdiffhomepage
path: root/dhcpv6/option_remoteid_test.go
diff options
context:
space:
mode:
authorChristopher Koch <c@chrisko.ch>2019-01-20 20:13:51 +0000
committerinsomniac <insomniacslk@users.noreply.github.com>2019-01-26 23:34:26 +0000
commitda69dad309583925ff4f8d0454bd0fb5bb6a1402 (patch)
tree59ab134698084993a6254afe70ff8035b7b4f655 /dhcpv6/option_remoteid_test.go
parent3478513076477d0f19eaeaf441f29949a9f6bc92 (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.go3
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,
}