Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion integration_tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ To add new integration tests:
2. Import the `common` module and follow the pattern used in existing tests:
```zig
const std = @import("std");
const common = @import("common.zig");
const common = @import("common");

pub fn main(init: std.process.Init) !void {
const allocator = init.gpa;
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/logs.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");
const clock = @import("clock");
const sdk = @import("opentelemetry-sdk");
const logs_sdk = sdk.logs;
const common = @import("common.zig");
const common = @import("common");

pub fn main(init: std.process.Init) !void {
const allocator = init.gpa;
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/metrics.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");
const clock = @import("clock");
const sdk = @import("opentelemetry-sdk");
const metrics_sdk = sdk.metrics;
const common = @import("common.zig");
const common = @import("common");

pub fn main(init: std.process.Init) !void {
const allocator = init.gpa;
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/metrics_http_json.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");
const clock = @import("clock");
const sdk = @import("opentelemetry-sdk");
const metrics_sdk = sdk.metrics;
const common = @import("common.zig");
const common = @import("common");

pub fn main(init: std.process.Init) !void {
const allocator = init.gpa;
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/traces.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const clock = @import("clock");
const sdk = @import("opentelemetry-sdk");
const trace_sdk = sdk.trace;
const trace_api = sdk.api.trace;
const common = @import("common.zig");
const common = @import("common");

pub fn main(init: std.process.Init) !void {
const allocator = init.gpa;
Expand Down
Loading