mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
63bed34608
IDs.Less can be rewritten as string(list[i][:]) < string(list[j][:]) Note that this does not copy the ID's. The Uniq method was no longer used. The String method has been reimplemented without first copying into a separate slice of a custom type.
18 lines
454 B
Go
18 lines
454 B
Go
package restic
|
|
|
|
import (
|
|
"testing"
|
|
|
|
rtest "github.com/restic/restic/internal/test"
|
|
)
|
|
|
|
func TestIDsString(t *testing.T) {
|
|
ids := IDs{
|
|
TestParseID("7bb086db0d06285d831485da8031281e28336a56baa313539eaea1c73a2a1a40"),
|
|
TestParseID("1285b30394f3b74693cc29a758d9624996ae643157776fce8154aabd2f01515f"),
|
|
TestParseID("7bb086db0d06285d831485da8031281e28336a56baa313539eaea1c73a2a1a40"),
|
|
}
|
|
|
|
rtest.Equals(t, "[7bb086db 1285b303 7bb086db]", ids.String())
|
|
}
|