Skip to content

Commit ebdc34e

Browse files
authored
fix: add missing logs stub in update test
1 parent bd29104 commit ebdc34e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/core/datasetUpdate.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,12 @@ function stubClients(options: {
8181
throw new Error(`unexpected command: ${(command as object).constructor.name}`);
8282
};
8383
const client = { send } as never;
84-
return { control: () => client, data: () => client, iam: () => client };
84+
return {
85+
control: () => client,
86+
data: () => client,
87+
iam: () => client,
88+
logs: () => client,
89+
};
8590
}
8691

8792
describe("EvalClient.updateDatasetExamples", () => {

0 commit comments

Comments
 (0)