Copilot commented on code in PR #3601: URL: https://github.com/apache/dubbo-go/pull/3601#discussion_r3740509967
########## registry/servicediscovery/store/cache_manager_test.go: ########## @@ -18,6 +18,11 @@ package store import ( + "fmt" + "os" + "path/filepath" + "runtime" Review Comment: The test file now has two separate `import` blocks, which `gofmt` would merge into a single grouped import section (stdlib first, then a blank line, then module imports). Keeping multiple import blocks is inconsistent with gofmt output and may fail formatting checks. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
