Skip to content

Commit 1740a06

Browse files
authored
fix: add missing require import in schedule migration test (#9829)
## Summary - Adds missing `github.com/stretchr/testify/require` import to `tests/schedule_migration_test.go` - The standalone test function `TestScheduleMigrationV1ToV2NoDuplicateRecentActions` used `require.NoError`, `require.Eventually`, and `require.Equal` without importing the package, causing a build failure
1 parent 1342149 commit 1740a06

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/schedule_migration_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"time"
99

1010
"github.com/google/uuid"
11+
"github.com/stretchr/testify/require"
1112
commonpb "go.temporal.io/api/common/v1"
1213
enumspb "go.temporal.io/api/enums/v1"
1314
schedulepb "go.temporal.io/api/schedule/v1"

0 commit comments

Comments
 (0)