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

This commit is contained in:
Kristin Laemmert 2020-02-14 08:26:14 -05:00 committed by GitHub
parent 402c0ed10c
commit 72ec579807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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")
}