@@ -676,7 +676,7 @@ func TestPreloadEmbeddedSchema_basic(t *testing.T) {
676
676
t .Fatal (err )
677
677
}
678
678
679
- err = PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
679
+ err = PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
680
680
if err != nil {
681
681
t .Fatal (err )
682
682
}
@@ -746,7 +746,7 @@ func TestPreloadEmbeddedSchema_unknownProviderOnly(t *testing.T) {
746
746
t .Fatal (err )
747
747
}
748
748
749
- err = PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
749
+ err = PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
750
750
if err != nil {
751
751
t .Fatal (err )
752
752
}
@@ -810,13 +810,13 @@ func TestPreloadEmbeddedSchema_idempotency(t *testing.T) {
810
810
}
811
811
812
812
// first
813
- err = PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
813
+ err = PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
814
814
if err != nil {
815
815
t .Fatal (err )
816
816
}
817
817
818
818
// second - testing module state
819
- err = PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
819
+ err = PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
820
820
if err != nil {
821
821
if ! errors .Is (err , job.StateNotChangedErr {Dir : document .DirHandleFromPath (modPath )}) {
822
822
t .Fatal (err )
@@ -825,7 +825,7 @@ func TestPreloadEmbeddedSchema_idempotency(t *testing.T) {
825
825
826
826
ctx = job .WithIgnoreState (ctx , true )
827
827
// third - testing requirement matching
828
- err = PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
828
+ err = PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
829
829
if err != nil {
830
830
t .Fatal (err )
831
831
}
@@ -892,14 +892,14 @@ func TestPreloadEmbeddedSchema_raceCondition(t *testing.T) {
892
892
wg .Add (2 )
893
893
go func () {
894
894
defer wg .Done ()
895
- err := PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
895
+ err := PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
896
896
if err != nil && ! errors .Is (err , job.StateNotChangedErr {Dir : document .DirHandleFromPath (modPath )}) {
897
897
t .Error (err )
898
898
}
899
899
}()
900
900
go func () {
901
901
defer wg .Done ()
902
- err := PreloadEmbeddedSchema (ctx , schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
902
+ err := PreloadEmbeddedSchema (ctx , log . Default (), schemasFS , ss .Modules , ss .ProviderSchemas , modPath )
903
903
if err != nil && ! errors .Is (err , job.StateNotChangedErr {Dir : document .DirHandleFromPath (modPath )}) {
904
904
t .Error (err )
905
905
}
0 commit comments