File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- 878cc2044717e0177228529a50433fe2768e70b5
1+ 06a848ab04e3f43978b92f0ceee019e9e2fe50f1
Original file line number Diff line number Diff line change @@ -571,16 +571,16 @@ async fn test_volume_sql_worker_e2e(db: Pool<Postgres>) -> anyhow::Result<()> {
571571 std:: fs:: write ( vol_dir. join ( "hello.txt" ) , b"hello from volume" ) ?;
572572
573573 // 3. Push the job and run with SQL-connected worker
574- let code = r#"// volume: test-vol /tmp/ data
574+ let code = r#"// volume: test-vol data
575575
576576import { readFileSync, writeFileSync, existsSync } from "fs";
577577
578578export function main() {
579- const content = readFileSync("/tmp/ data/hello.txt", "utf-8");
580- writeFileSync("/tmp/ data/output.txt", "written by sql worker");
579+ const content = readFileSync("data/hello.txt", "utf-8");
580+ writeFileSync("data/output.txt", "written by sql worker");
581581 return {
582582 read_content: content,
583- output_exists: existsSync("/tmp/ data/output.txt"),
583+ output_exists: existsSync("data/output.txt"),
584584 };
585585}"# ;
586586
You can’t perform that action at this time.
0 commit comments