Skip to content

Commit 364ef1d

Browse files
authored
chore(EXT): execute goimports to format the code (#8166)
execute goimports to format the code Signed-off-by: luohewuyang <luohewuyang@outlook.com>
1 parent 7007e62 commit 364ef1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rs/tests/ict/cmd/testnetCreateCmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ func TestnetCommand(cfg *TestnetConfig) func(cmd *cobra.Command, args []string)
182182
cmd.PrintErrln(GREEN + "Successfully synced dashboards to path " + icDashboardsDir)
183183
icDashboardsDir = filepath.Join(icDashboardsDir, "bases", "apps", "ic-dashboards")
184184
cmd.Println(GREEN + "Will use " + icDashboardsDir + " as a root for dashboards")
185-
env = append(env, "IC_DASHBOARDS_DIR=" + icDashboardsDir)
185+
env = append(env, "IC_DASHBOARDS_DIR="+icDashboardsDir)
186186
}
187187
if len(cfg.farmBaseUrl) > 0 {
188188
command = append(command, "--farm-base-url="+cfg.farmBaseUrl)

rs/tests/ict/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func AssembleAllCmds() *cobra.Command {
1414
testCmd.AddCommand(cmd.NewTestListCmd()) // command + subcommand
1515
var testnetCmd = cmd.NewTestnetCmd()
1616
testnetCmd.AddCommand(cmd.NewTestnetCreateCmd()) // command + subcommand
17-
testnetCmd.AddCommand(cmd.NewTestnetListCmd()) // command + subcommand
17+
testnetCmd.AddCommand(cmd.NewTestnetListCmd()) // command + subcommand
1818
var rootCmd = cmd.NewRootCmd()
1919
rootCmd.AddCommand(testCmd)
2020
rootCmd.AddCommand(testnetCmd)

0 commit comments

Comments
 (0)