diff options
author | Chris Koch <chrisko@google.com> | 2023-02-18 13:59:40 -0800 |
---|---|---|
committer | Chris K <c@chrisko.ch> | 2023-02-18 23:57:24 -0800 |
commit | 10146be7d8494d72e98d40df63cc0d65501e169f (patch) | |
tree | b6e43a11ae6ae60149af06af11d615c4ad7c2055 /dhcpv6/option_temporaryaddress_test.go | |
parent | a5c8a4bf9480a9c8cd16ab84914f7d646f3c0130 (diff) |
Normalize String functions
Signed-off-by: Chris Koch <chrisko@google.com>
Diffstat (limited to 'dhcpv6/option_temporaryaddress_test.go')
-rw-r--r-- | dhcpv6/option_temporaryaddress_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpv6/option_temporaryaddress_test.go b/dhcpv6/option_temporaryaddress_test.go index de7fe39..9b48d5a 100644 --- a/dhcpv6/option_temporaryaddress_test.go +++ b/dhcpv6/option_temporaryaddress_test.go @@ -112,12 +112,12 @@ func TestOptIATAString(t *testing.T) { str := opt.String() require.Contains( t, str, - "IAID=[1 0 0 0]", + "IAID=0x01000000", "String() should return the IAID", ) require.Contains( t, str, - "options={", + "Options={", "String() should return a list of options", ) } |