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

feat: add boolean behavior for durations #24272

Merged
merged 16 commits into from
Jul 17, 2023
Merged
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
Prev Previous commit
Next Next commit
fix: allow item to take type any
  • Loading branch information
fchikwekwe committed Jul 14, 2023
commit 926c775702155d4dbc0902e1358e168abbd900f1
3 changes: 1 addition & 2 deletions pkg/ottl/boolean_value_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ func Test_newComparisonEvaluator(t *testing.T) {
WithEnumParser[any](testParseEnum),
)

JanFirst2023 := time.Date(2023, 1, 1, 0, 0, 0, 0, time.Local)
twelveNanoseconds, err := time.ParseDuration("12ns")
if err != nil {
t.Error()
Expand Down Expand Up @@ -116,7 +115,7 @@ func Test_newComparisonEvaluator(t *testing.T) {
l any
r any
op string
item string
item any
want bool
}{
{name: "literals match", l: "hello", r: "hello", op: "==", want: true},
Expand Down