Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(go): Fix TestActionTracing test case #1594

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Next Next commit
fix(go): Fix TestTracingAction test case
  • Loading branch information
hugoaguirre authored Jan 10, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 18ea112835c12a56c0eec0124aa610f74d39f1da
2 changes: 1 addition & 1 deletion go/core/action_test.go
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ func TestActionTracing(t *testing.T) {
}
tc := tracing.NewTestOnlyTelemetryClient()
r.TracingState().WriteTelemetryImmediate(tc)
const actionName = "TestTracing-inc"
const actionName = "test/TestTracing-inc"
a := defineAction(r, "test", actionName, atype.Custom, nil, nil, inc)
if _, err := a.Run(context.Background(), 3, nil); err != nil {
t.Fatal(err)
Loading