Skip to content

Commit

Permalink
Trying to see if all binaries work
Browse files Browse the repository at this point in the history
  • Loading branch information
seatedro committed Aug 31, 2024
1 parent f225157 commit 317d66a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,12 @@ test "test_ascii_generation" {

// Create a temporary file path
var tmp_path_buf: [std.fs.MAX_PATH_BYTES]u8 = undefined;
const tmp_path = try std.fmt.bufPrintZ(&tmp_path_buf, "test_ascii_output.png", .{});
try std.fs.cwd().makePath("test_output");
const tmp_path = try std.fmt.bufPrintZ(
&tmp_path_buf,
"test_output/test_ascii_output.png",
.{},
);

// Set up test arguments
const test_args = Args{
Expand Down

0 comments on commit 317d66a

Please sign in to comment.