@@ -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 },
@@ -353,6 +354,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
353354 Diagnostics : []* tfplugin6.Diagnostic {},
354355 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
355356 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
357+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
356358 Functions : map [string ]* tfplugin6.Function {},
357359 ResourceSchemas : map [string ]* tfplugin6.Schema {},
358360 },
@@ -388,6 +390,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
388390 Diagnostics : []* tfplugin6.Diagnostic {},
389391 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
390392 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
393+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
391394 Functions : map [string ]* tfplugin6.Function {},
392395 ResourceSchemas : map [string ]* tfplugin6.Schema {},
393396 },
@@ -406,6 +409,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
406409 },
407410 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
408411 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
412+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
409413 Functions : map [string ]* tfplugin6.Function {},
410414 ResourceSchemas : map [string ]* tfplugin6.Schema {},
411415 },
@@ -441,6 +445,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
441445 },
442446 },
443447 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
448+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
444449 Functions : map [string ]* tfplugin6.Function {},
445450 ResourceSchemas : map [string ]* tfplugin6.Schema {},
446451 },
@@ -461,6 +466,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
461466 Diagnostics : []* tfplugin6.Diagnostic {},
462467 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
463468 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
469+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
464470 Functions : map [string ]* tfplugin6.Function {
465471 "test" : {
466472 Parameters : []* tfplugin6.Function_Parameter {},
@@ -503,8 +509,9 @@ func TestGetProviderSchema_Response(t *testing.T) {
503509 },
504510 },
505511 },
506- Functions : map [string ]* tfplugin6.Function {},
507- ResourceSchemas : map [string ]* tfplugin6.Schema {},
512+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
513+ Functions : map [string ]* tfplugin6.Function {},
514+ ResourceSchemas : map [string ]* tfplugin6.Schema {},
508515 },
509516 },
510517 "Provider" : {
@@ -525,6 +532,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
525532 Diagnostics : []* tfplugin6.Diagnostic {},
526533 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
527534 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
535+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
528536 Functions : map [string ]* tfplugin6.Function {},
529537 Provider : & tfplugin6.Schema {
530538 Block : & tfplugin6.Schema_Block {
@@ -557,6 +565,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
557565 Diagnostics : []* tfplugin6.Diagnostic {},
558566 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
559567 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
568+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
560569 Functions : map [string ]* tfplugin6.Function {},
561570 ProviderMeta : & tfplugin6.Schema {
562571 Block : & tfplugin6.Schema_Block {
@@ -591,6 +600,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
591600 Diagnostics : []* tfplugin6.Diagnostic {},
592601 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
593602 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
603+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
594604 Functions : map [string ]* tfplugin6.Function {},
595605 ResourceSchemas : map [string ]* tfplugin6.Schema {
596606 "test" : {
@@ -618,6 +628,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
618628 Diagnostics : []* tfplugin6.Diagnostic {},
619629 EphemeralResourceSchemas : map [string ]* tfplugin6.Schema {},
620630 ListResourceSchemas : map [string ]* tfplugin6.Schema {},
631+ StateStoreSchemas : map [string ]* tfplugin6.Schema {},
621632 Functions : map [string ]* tfplugin6.Function {},
622633 ResourceSchemas : map [string ]* tfplugin6.Schema {},
623634 ServerCapabilities : & tfplugin6.ServerCapabilities {
@@ -651,7 +662,7 @@ func TestGetProviderSchema_Response(t *testing.T) {
651662 tfplugin6.ServerCapabilities {},
652663 )
653664
654- if diff := cmp .Diff (got , testCase .expected , diffOpts ); diff != "" {
665+ if diff := cmp .Diff (testCase .expected , got , diffOpts ); diff != "" {
655666 t .Errorf ("unexpected difference: %s" , diff )
656667 }
657668 })
0 commit comments