Skip to content

Commit 3adebdc

Browse files
committed
Fix tempDir references added in main branch
1 parent 49314d4 commit 3adebdc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/services/tools/bash.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@ describe("SSH runtime redundant cd detection", () => {
12511251
const tool = createBashTool({
12521252
cwd,
12531253
runtime: sshRuntime,
1254-
tempDir: tempDir.path,
1254+
runtimeTempDir: tempDir.path,
12551255
});
12561256

12571257
return {

src/services/tools/file_edit_operation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ describe("executeFileEditOperation", () => {
6666
config: {
6767
cwd: testCwd,
6868
runtime: mockRuntime,
69-
tempDir: "/tmp",
69+
runtimeTempDir: "/tmp",
7070
},
7171
filePath: testFilePath,
7272
operation: () => ({ success: true, newContent: "test", metadata: {} }),

0 commit comments

Comments
 (0)