Skip to content

Commit 20efaef

Browse files
committed
chore(imports): reorder import statements for consistency
1 parent 2b4f262 commit 20efaef

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

internal/state/pr.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/mrz1836/go-broadcast/internal/gh"
1110
"gopkg.in/yaml.v3"
11+
12+
"github.com/mrz1836/go-broadcast/internal/gh"
1213
)
1314

1415
// PR metadata extraction errors

internal/state/pr_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/mrz1836/go-broadcast/internal/gh"
98
"github.com/stretchr/testify/assert"
109
"github.com/stretchr/testify/require"
10+
11+
"github.com/mrz1836/go-broadcast/internal/gh"
1112
)
1213

1314
func TestExtractEnhancedPRMetadata(t *testing.T) {

internal/sync/pr_statistics_fix_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/mrz1836/go-broadcast/internal/config"
87
"github.com/sirupsen/logrus"
98
"github.com/stretchr/testify/assert"
9+
10+
"github.com/mrz1836/go-broadcast/internal/config"
1011
)
1112

1213
// TestPRStatisticsAccuracy tests the fix for PR statistics showing incorrect numbers

internal/sync/pr_statistics_integration_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/mrz1836/go-broadcast/internal/config"
87
"github.com/sirupsen/logrus"
98
"github.com/stretchr/testify/assert"
9+
10+
"github.com/mrz1836/go-broadcast/internal/config"
1011
)
1112

1213
// TestOriginalPRIssueScenario simulates the original issue from PR #23:

0 commit comments

Comments
 (0)