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: add back time var
  • Loading branch information
fchikwekwe committed Jul 17, 2023
commit d80b9a43d58295744550f79637cca6d91ddb4a3f
2 changes: 2 additions & 0 deletions pkg/ottl/boolean_value_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ func Test_newComparisonEvaluator(t *testing.T) {
oneHundredThirtyFiveHours, err := time.ParseDuration("135h")
require.NoError(t, err)

JanFirst2023 := time.Date(2023, 1, 1, 0, 0, 0, 0, time.Local)

var tests = []struct {
name string
l any
Expand Down
Loading