util/set: make Clone a method (#10044)

Updates #cleanup

Signed-off-by: Chris Palmer <cpalmer@tailscale.com>
This commit is contained in:
Chris Palmer
2023-11-01 10:20:38 -07:00
committed by GitHub
parent 5289cfce33
commit 3a9f5c02bf
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ func TestClone(t *testing.T) {
if s.Len() != 4 {
t.Errorf("wrong len %d; want 4", s.Len())
}
s2 := Clone(s)
s2 := s.Clone()
if !s.Equal(s2) {
t.Error("clone not equal to original")
}