@@ -35,8 +35,8 @@ def test_method_create(self, client: Gradient) -> None:
35
35
def test_method_create_with_all_params (self , client : Gradient ) -> None :
36
36
workspace = client .agents .evaluation_metrics .workspaces .create (
37
37
agent_uuids = ["example string" ],
38
- description = ' "example string"' ,
39
- name = ' "example name"' ,
38
+ description = "example string" ,
39
+ name = "example name" ,
40
40
)
41
41
assert_matches_type (WorkspaceCreateResponse , workspace , path = ["response" ])
42
42
@@ -117,9 +117,9 @@ def test_method_update(self, client: Gradient) -> None:
117
117
def test_method_update_with_all_params (self , client : Gradient ) -> None :
118
118
workspace = client .agents .evaluation_metrics .workspaces .update (
119
119
path_workspace_uuid = '"123e4567-e89b-12d3-a456-426614174000"' ,
120
- description = ' "example string"' ,
121
- name = ' "example name"' ,
122
- body_workspace_uuid = ' "123e4567-e89b-12d3-a456-426614174000"' ,
120
+ description = "example string" ,
121
+ name = "example name" ,
122
+ body_workspace_uuid = "123e4567-e89b-12d3-a456-426614174000" ,
123
123
)
124
124
assert_matches_type (WorkspaceUpdateResponse , workspace , path = ["response" ])
125
125
@@ -286,8 +286,8 @@ async def test_method_create(self, async_client: AsyncGradient) -> None:
286
286
async def test_method_create_with_all_params (self , async_client : AsyncGradient ) -> None :
287
287
workspace = await async_client .agents .evaluation_metrics .workspaces .create (
288
288
agent_uuids = ["example string" ],
289
- description = ' "example string"' ,
290
- name = ' "example name"' ,
289
+ description = "example string" ,
290
+ name = "example name" ,
291
291
)
292
292
assert_matches_type (WorkspaceCreateResponse , workspace , path = ["response" ])
293
293
@@ -368,9 +368,9 @@ async def test_method_update(self, async_client: AsyncGradient) -> None:
368
368
async def test_method_update_with_all_params (self , async_client : AsyncGradient ) -> None :
369
369
workspace = await async_client .agents .evaluation_metrics .workspaces .update (
370
370
path_workspace_uuid = '"123e4567-e89b-12d3-a456-426614174000"' ,
371
- description = ' "example string"' ,
372
- name = ' "example name"' ,
373
- body_workspace_uuid = ' "123e4567-e89b-12d3-a456-426614174000"' ,
371
+ description = "example string" ,
372
+ name = "example name" ,
373
+ body_workspace_uuid = "123e4567-e89b-12d3-a456-426614174000" ,
374
374
)
375
375
assert_matches_type (WorkspaceUpdateResponse , workspace , path = ["response" ])
376
376
0 commit comments