Skip to content

Commit

Permalink
fix test suite path
Browse files Browse the repository at this point in the history
  • Loading branch information
rdunnington committed May 14, 2024
1 parent 82940ea commit 41d2bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/wasm/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,7 @@ pub fn main() !void {
};

// wasm path
const suite_path_no_extension: []const u8 = try std.fs.path.join(allocator, &[_][]const u8{ "test", "wasm", suite, suite });
const suite_path_no_extension: []const u8 = try std.fs.path.join(allocator, &[_][]const u8{ "test", "wasm", "wasm-generated", suite, suite });
defer allocator.free(suite_path_no_extension);

const suite_path = try std.mem.join(allocator, "", &[_][]const u8{ suite_path_no_extension, ".json" });
Expand Down

0 comments on commit 41d2bb7

Please sign in to comment.