@@ -40,7 +40,6 @@ public function testDeleteSecret(): void
40
40
41
41
$ input = new DeleteSecretRequest ([
42
42
'SecretId ' => 'change me ' ,
43
-
44
43
]);
45
44
$ result = $ client ->DeleteSecret ($ input );
46
45
@@ -54,7 +53,6 @@ public function testGetSecretValue(): void
54
53
55
54
$ input = new GetSecretValueRequest ([
56
55
'SecretId ' => 'change me ' ,
57
-
58
56
]);
59
57
$ result = $ client ->GetSecretValue ($ input );
60
58
@@ -67,7 +65,6 @@ public function testListSecrets(): void
67
65
$ client = new SecretsManagerClient ([], new NullProvider (), new MockHttpClient ());
68
66
69
67
$ input = new ListSecretsRequest ([
70
-
71
68
]);
72
69
$ result = $ client ->ListSecrets ($ input );
73
70
@@ -81,7 +78,6 @@ public function testPutSecretValue(): void
81
78
82
79
$ input = new PutSecretValueRequest ([
83
80
'SecretId ' => 'change me ' ,
84
-
85
81
]);
86
82
$ result = $ client ->PutSecretValue ($ input );
87
83
@@ -95,7 +91,6 @@ public function testUpdateSecret(): void
95
91
96
92
$ input = new UpdateSecretRequest ([
97
93
'SecretId ' => 'change me ' ,
98
-
99
94
]);
100
95
$ result = $ client ->UpdateSecret ($ input );
101
96
0 commit comments