File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -917,9 +917,9 @@ export function createIntegrationTestsSuite(
917917 const actor = await apifyClient . actor ( actorName ) . get ( ) ;
918918 expect ( actor ) . toBeDefined ( ) ;
919919 const actorId = actor ! . id as string ;
920-
920+
921921 client = await createClientFn ( ) ;
922-
922+
923923 // Fetch by full Actor name
924924 const resultByName = await client . callTool ( {
925925 name : 'fetch-actor-details' ,
@@ -928,7 +928,7 @@ export function createIntegrationTestsSuite(
928928 expect ( resultByName . content ) . toBeDefined ( ) ;
929929 const contentByName = resultByName . content as { text : string } [ ] ;
930930 expect ( contentByName [ 0 ] . text ) . toContain ( actorName ) ;
931-
931+
932932 // Fetch by Actor ID only
933933 const resultById = await client . callTool ( {
934934 name : 'fetch-actor-details' ,
You can’t perform that action at this time.
0 commit comments