@@ -310,6 +310,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
310310 Diagnostics : []* tfplugin6.Diagnostic {},
311311 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
312312 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
313+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
313314 Functions : map [string ]* tfplugin6.Function {},
314315 ResourceSchemas : map [string ]* tfplugin6.Schema {},
315316 },
@@ -349,6 +350,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
349350 Diagnostics : []* tfplugin6.Diagnostic {},
350351 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
351352 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
353+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
352354 Functions : map [string ]* tfplugin6.Function {},
353355 ResourceSchemas : map [string ]* tfplugin6.Schema {},
354356 },
@@ -384,6 +386,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
384386 Diagnostics : []* tfplugin6.Diagnostic {},
385387 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
386388 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
389+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
387390 Functions : map [string ]* tfplugin6.Function {},
388391 ResourceSchemas : map [string ]* tfplugin6.Schema {},
389392 },
@@ -402,6 +405,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
402405 },
403406 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
404407 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
408+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
405409 Functions : map [string ]* tfplugin6.Function {},
406410 ResourceSchemas : map [string ]* tfplugin6.Schema {},
407411 },
@@ -437,6 +441,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
437441 },
438442 },
439443 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
444+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
440445 Functions : map [string ]* tfplugin6.Function {},
441446 ResourceSchemas : map [string ]* tfplugin6.Schema {},
442447 },
@@ -457,6 +462,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
457462 Diagnostics : []* tfplugin6.Diagnostic {},
458463 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
459464 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
465+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
460466 Functions : map [string ]* tfplugin6.Function {
461467 "test" : {
462468 Parameters : []* tfplugin6.Function_Parameter {},
@@ -499,8 +505,9 @@ func TestGetProviderSchema_Response(t *testing.T) {
499505 },
500506 },
501507 },
502- Functions : map [string ]* tfplugin6.Function {},
503- ResourceSchemas : map [string ]* tfplugin6.Schema {},
508+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
509+ Functions : map [string ]* tfplugin6.Function {},
510+ ResourceSchemas : map [string ]* tfplugin6.Schema {},
504511 },
505512 },
506513 "Provider" : {
@@ -521,6 +528,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
521528 Diagnostics : []* tfplugin6.Diagnostic {},
522529 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
523530 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
531+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
524532 Functions : map [string ]* tfplugin6.Function {},
525533 Provider : & tfplugin6.Schema {
526534 Block : & tfplugin6.Schema_Block {
@@ -553,6 +561,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
553561 Diagnostics : []* tfplugin6.Diagnostic {},
554562 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
555563 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
564+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
556565 Functions : map [string ]* tfplugin6.Function {},
557566 ProviderMeta : & tfplugin6.Schema {
558567 Block : & tfplugin6.Schema_Block {
@@ -587,6 +596,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
587596 Diagnostics : []* tfplugin6.Diagnostic {},
588597 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
589598 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
599+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
590600 Functions : map [string ]* tfplugin6.Function {},
591601 ResourceSchemas : map [string ]* tfplugin6.Schema {
592602 "test" : {
@@ -614,6 +624,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
614624 Diagnostics : []* tfplugin6.Diagnostic {},
615625 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
616626 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
627+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
617628 Functions : map [string ]* tfplugin6.Function {},
618629 ResourceSchemas : map [string ]* tfplugin6.Schema {},
619630 ServerCapabilities : & tfplugin6.ServerCapabilities {
@@ -645,7 +656,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
645656 tfplugin6.ServerCapabilities {},
646657 )
647658
648- if diff := cmp .Diff (got , testCase .expected , diffOpts ); diff != "" {
659+ if diff := cmp .Diff (testCase .expected , got , diffOpts ); diff != "" {
649660 t .Errorf ("unexpected difference: %s" , diff )
650661 }
651662 })
0 commit comments