configs/decodeRequiredProviders test: before comparing slices (#24114)

pull/24117/head
Kristin Laemmert 6 years ago committed by GitHub
parent 402c0ed10c
commit 72ec579807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,6 +2,7 @@ package configs
import (
"fmt"
"sort"
"testing"
"github.com/google/go-cmp/cmp"
@ -124,6 +125,11 @@ func TestDecodeRequiredProvidersBlock_mixed(t *testing.T) {
}
got, diags := decodeRequiredProvidersBlock(block)
sort.SliceStable(got, func(i, j int) bool {
return got[i].Name < got[j].Name
})
if diags.HasErrors() {
t.Fatalf("unexpected error")
}

Loading…
Cancel
Save