We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4591a5a commit b57f45fCopy full SHA for b57f45f
cue/errors/errors_test.go
@@ -67,6 +67,18 @@ func TestErrorList_Reset(t *testing.T) {
67
}
68
69
70
+func TestErrorList_Sort(t *testing.T) {
71
+ tests := []struct {
72
+ name string
73
+ p list
74
+ }{
75
+ // TODO: Add test cases.
76
+ }
77
+ for _, tt := range tests {
78
+ tt.p.Sort()
79
80
+}
81
+
82
func TestErrorList_RemoveMultiples(t *testing.T) {
83
error1 := Promote(fmt.Errorf("error1"), "msg1")
84
error2 := Promote(fmt.Errorf("error2"), "msg2")
0 commit comments