Skip to content

Commit

Permalink
fix CI after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
electron0zero committed Sep 2, 2024
1 parent 30ba406 commit 7285e48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/traceql/ast_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ func (m *mockSpan) WithSpanString(key string, value string) *mockSpan {
}

func (m *mockSpan) WithSpanInt(key string, value int) *mockSpan {
m.attributes[NewScopedAttribute(AttributeScopeSpan, false, key)] = NewStaticInt(value)
m.attributes[NewScopedAttribute(AttributeScopeSpan, false, key, false)] = NewStaticInt(value)
return m
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/traceql/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1377,7 +1377,7 @@ func TestMetrics(t *testing.T) {
NewIntrinsic(IntrinsicDuration),
[]Attribute{
NewIntrinsic(IntrinsicName),
NewScopedAttribute(AttributeScopeSpan, false, "http.status_code"),
NewScopedAttribute(AttributeScopeSpan, false, "http.status_code", false),
}),
),
},
Expand Down

0 comments on commit 7285e48

Please sign in to comment.