@@ -217,7 +217,7 @@ func TestAgentPoolsCreate(t *testing.T) {
217217 assert .Equal (
218218 t ,
219219 ResourceNotFoundError {
220- Message : fmt .Sprintf ("Invalid Relationship\n \n Account with ID '%s' not found or user unauthorized" , accountId ),
220+ Message : fmt .Sprintf ("Invalid Relationship\n \n Account with ID '%s' not found or user unauthorized. " , accountId ),
221221 }.Error (),
222222 err .Error (),
223223 )
@@ -233,7 +233,7 @@ func TestAgentPoolsCreate(t *testing.T) {
233233 assert .Equal (
234234 t ,
235235 ResourceNotFoundError {
236- Message : fmt .Sprintf ("Invalid Relationship\n \n Environment with ID '%s' not found or user unauthorized" , envID ),
236+ Message : fmt .Sprintf ("Invalid Relationship\n \n Environment with ID '%s' not found or user unauthorized. " , envID ),
237237 }.Error (),
238238 err .Error (),
239239 )
@@ -274,7 +274,7 @@ func TestAgentPoolsCreate(t *testing.T) {
274274 assert .Equal (
275275 t ,
276276 ResourceNotFoundError {
277- Message : fmt .Sprintf ("Invalid Relationship\n \n Relationship 'workspaces' with ID '%s' not found or user unauthorized" , wsID ),
277+ Message : fmt .Sprintf ("Invalid Relationship\n \n Relationship 'workspaces' with ID '%s' not found or user unauthorized. " , wsID ),
278278 }.Error (),
279279 err .Error (),
280280 )
@@ -305,7 +305,7 @@ func TestAgentPoolsRead(t *testing.T) {
305305 assert .Equal (
306306 t ,
307307 ResourceNotFoundError {
308- Message : fmt .Sprintf ("AgentPool with ID '%s' not found or user unauthorized" , apID ),
308+ Message : fmt .Sprintf ("AgentPool with ID '%s' not found or user unauthorized. " , apID ),
309309 }.Error (),
310310 err .Error (),
311311 )
@@ -392,7 +392,7 @@ func TestAgentPoolsDelete(t *testing.T) {
392392 assert .Equal (
393393 t ,
394394 ResourceNotFoundError {
395- Message : fmt .Sprintf ("AgentPool with ID '%s' not found or user unauthorized" , pool .ID ),
395+ Message : fmt .Sprintf ("AgentPool with ID '%s' not found or user unauthorized. " , pool .ID ),
396396 }.Error (),
397397 err .Error (),
398398 )
0 commit comments