Skip to content

Commit 4ff957e

Browse files
committed
lint
1 parent f207cc2 commit 4ff957e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/suite.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)