/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/depsfile/testing.go
25 строк
894 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 package depsfile import ( "github.com/google/go-cmp/cmp" ) // ProviderLockComparer is an option for github.com/google/go-cmp/cmp that // specifies how to compare values of type depsfile.ProviderLock. // // Use this, rather than crafting comparison options yourself, in case the // comparison strategy needs to change in future due to implementation details // of the ProviderLock type. var ProviderLockComparer cmp.Option func init() { // For now, direct comparison of the unexported fields is good enough // because we store everything in a normalized form. If that changes // later then we might need to write a custom transformer to a hidden // type with exported fields, so we can retain the ability for cmp to // still report differences deeply. ProviderLockComparer = cmp.AllowUnexported(ProviderLock{}) }