Skip to content

Commit 8d3537e

Browse files
committed
fix: update tests
1 parent dd543dd commit 8d3537e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

registry/coder-labs/modules/gemini/main.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ describe("gemini", async () => {
153153
},
154154
});
155155
await execModuleScript(id);
156-
const resp = await readFileContainer(id, "/home/coder/.gemini-module/install.log");
156+
const resp = await readFileContainer(id, "/home/coder/.gemini-module/agentapi-start.log");
157157
expect(resp).toContain('GOOGLE_GENAI_USE_VERTEXAI=\'true\'');
158158
});
159159

@@ -166,7 +166,7 @@ describe("gemini", async () => {
166166
},
167167
});
168168
await execModuleScript(id);
169-
const resp = await readFileContainer(id, "/home/coder/.gemini-module/install.log");
169+
const resp = await readFileContainer(id, "/home/coder/.gemini-module/agentapi-start.log");
170170
expect(resp).toContain(model);
171171
});
172172

@@ -193,7 +193,7 @@ describe("gemini", async () => {
193193
},
194194
});
195195
await execModuleScript(id);
196-
const resp = await readFileContainer(id, "/home/coder/.gemini-module/install.log");
196+
const resp = await readFileContainer(id, "/home/coder/.gemini-module/agentapi-start.log");
197197
expect(resp).toContain(folder);
198198
});
199199

0 commit comments

Comments
 (0)