This repository was archived by the owner on Jul 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ To add new integration tests:
82822 . Import the ` common ` module and follow the pattern used in existing tests:
8383 ``` zig
8484 const std = @import("std");
85- const common = @import("common.zig ");
85+ const common = @import("common");
8686
8787 pub fn main(init: std.process.Init) !void {
8888 const allocator = init.gpa;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const std = @import("std");
22const clock = @import ("clock" );
33const sdk = @import ("opentelemetry-sdk" );
44const logs_sdk = sdk .logs ;
5- const common = @import ("common.zig " );
5+ const common = @import ("common" );
66
77pub fn main (init : std.process.Init ) ! void {
88 const allocator = init .gpa ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const std = @import("std");
22const clock = @import ("clock" );
33const sdk = @import ("opentelemetry-sdk" );
44const metrics_sdk = sdk .metrics ;
5- const common = @import ("common.zig " );
5+ const common = @import ("common" );
66
77pub fn main (init : std.process.Init ) ! void {
88 const allocator = init .gpa ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const std = @import("std");
22const clock = @import ("clock" );
33const sdk = @import ("opentelemetry-sdk" );
44const metrics_sdk = sdk .metrics ;
5- const common = @import ("common.zig " );
5+ const common = @import ("common" );
66
77pub fn main (init : std.process.Init ) ! void {
88 const allocator = init .gpa ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const clock = @import("clock");
33const sdk = @import ("opentelemetry-sdk" );
44const trace_sdk = sdk .trace ;
55const trace_api = sdk .api .trace ;
6- const common = @import ("common.zig " );
6+ const common = @import ("common" );
77
88pub fn main (init : std.process.Init ) ! void {
99 const allocator = init .gpa ;
You can’t perform that action at this time.
0 commit comments