mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-04 06:59:35 +00:00
* Commit of new etcd snapshot integration tests. * Updated integration github action to not run on doc changes. * Update Drone runner to only run unit tests Signed-off-by: dereknola <derek.nola@suse.com>
15 lines
364 B
Go
15 lines
364 B
Go
package matchers
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"strings"
|
|
)
|
|
|
|
type attributesSlice []xml.Attr
|
|
|
|
func (attrs attributesSlice) Len() int { return len(attrs) }
|
|
func (attrs attributesSlice) Less(i, j int) bool {
|
|
return strings.Compare(attrs[i].Name.Local, attrs[j].Name.Local) == -1
|
|
}
|
|
func (attrs attributesSlice) Swap(i, j int) { attrs[i], attrs[j] = attrs[j], attrs[i] }
|