From 41d2bb7201dd5dc81f63384bb2b7c288568825ad Mon Sep 17 00:00:00 2001 From: Reuben Dunnington Date: Tue, 14 May 2024 09:06:35 -0700 Subject: [PATCH] fix test suite path --- test/wasm/main.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/wasm/main.zig b/test/wasm/main.zig index 205e0d7..3b11a17 100644 --- a/test/wasm/main.zig +++ b/test/wasm/main.zig @@ -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" });