Skip to content
This repository was archived by the owner on Jul 1, 2026. It is now read-only.

Commit a6c451e

Browse files
agagniereinge4pres
authored andcommitted
integration tests: Use the common module
1 parent 9340be2 commit a6c451e

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

integration_tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To add new integration tests:
8282
2. 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;

integration_tests/logs.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
const clock = @import("clock");
33
const sdk = @import("opentelemetry-sdk");
44
const logs_sdk = sdk.logs;
5-
const common = @import("common.zig");
5+
const common = @import("common");
66

77
pub fn main(init: std.process.Init) !void {
88
const allocator = init.gpa;

integration_tests/metrics.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
const clock = @import("clock");
33
const sdk = @import("opentelemetry-sdk");
44
const metrics_sdk = sdk.metrics;
5-
const common = @import("common.zig");
5+
const common = @import("common");
66

77
pub fn main(init: std.process.Init) !void {
88
const allocator = init.gpa;

integration_tests/metrics_http_json.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const std = @import("std");
22
const clock = @import("clock");
33
const sdk = @import("opentelemetry-sdk");
44
const metrics_sdk = sdk.metrics;
5-
const common = @import("common.zig");
5+
const common = @import("common");
66

77
pub fn main(init: std.process.Init) !void {
88
const allocator = init.gpa;

integration_tests/traces.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const clock = @import("clock");
33
const sdk = @import("opentelemetry-sdk");
44
const trace_sdk = sdk.trace;
55
const trace_api = sdk.api.trace;
6-
const common = @import("common.zig");
6+
const common = @import("common");
77

88
pub fn main(init: std.process.Init) !void {
99
const allocator = init.gpa;

0 commit comments

Comments
 (0)