Skip to content

Commit 9e2f73b

Browse files
author
john
committed
fix: maintain correct import formatting structure
Ensure three-block import organization: 1. Standard library imports 2. Third-party imports 3. Project internal imports This maintains consistency with project formatting standards.
1 parent 3058ec3 commit 9e2f73b

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

metadata/integration_test.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,10 @@ package metadata_test
1919

2020
import (
2121
"testing"
22-
)
2322

24-
import (
25-
"github.com/stretchr/testify/assert"
26-
)
27-
28-
import (
2923
"dubbo.apache.org/dubbo-go/v3/common/constant"
3024
"dubbo.apache.org/dubbo-go/v3/metadata"
25+
"github.com/stretchr/testify/assert"
3126
)
3227

3328
// TestJavaDubboIssueCompatibility tests functionality that resolves Java Dubbo 3.3.1 compatibility issues

metadata/java_dubbo_integration_test.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,10 @@ package metadata_test
1919

2020
import (
2121
"testing"
22-
)
2322

24-
import (
25-
"github.com/stretchr/testify/assert"
26-
)
27-
28-
import (
2923
"dubbo.apache.org/dubbo-go/v3/common"
3024
"dubbo.apache.org/dubbo-go/v3/metadata/info"
25+
"github.com/stretchr/testify/assert"
3126
)
3227

3328
// TestJavaDubboRevisionCompatibility tests Java Dubbo client revision compatibility

0 commit comments

Comments
 (0)