Skip to content

Commit de56a29

Browse files
committed
fix: try relative import
1 parent a357d23 commit de56a29

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

build.zig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const std = @import("std");
22
const fs = std.fs;
33
const mem = std.mem;
4+
const exetest = @import("./src/root.zig");
45

56
pub fn build(b: *std.Build) !void {
67
const target = b.standardTargetOptions(.{});
@@ -34,9 +35,6 @@ pub fn build(b: *std.Build) !void {
3435
});
3536
b.installArtifact(test_exe);
3637

37-
// NOTE: End user will use b.addDependency
38-
const exetest = @import("src/root.zig");
39-
4038
const run_integration_tests = exetest.add(b, .{
4139
.name = "integration",
4240
.test_file = b.path("src/test.zig"),

0 commit comments

Comments
 (0)