cmd/swarm: remove unnecessary comment

This commit is contained in:
Javier Peletier 2018-11-26 10:31:51 +01:00
parent e0f643f390
commit 3205b8fa7a

View file

@ -142,7 +142,7 @@ func TestCLIFeedUpdate(t *testing.T) {
log.Info("Publishing manifest with 'swarm feed create'") log.Info("Publishing manifest with 'swarm feed create'")
cmd = runSwarm(t, flags...) cmd = runSwarm(t, flags...)
_, matches = cmd.ExpectRegexp(`[a-f\d]{64}`) // regex hack to extract stdout _, matches = cmd.ExpectRegexp(`[a-f\d]{64}`)
cmd.ExpectExit() cmd.ExpectExit()
manifestAddress := matches[0] // read the received feed manifest manifestAddress := matches[0] // read the received feed manifest
@ -172,7 +172,7 @@ func TestCLIFeedUpdate(t *testing.T) {
log.Info("Publishing manifest with 'swarm feed create' for a different user") log.Info("Publishing manifest with 'swarm feed create' for a different user")
cmd = runSwarm(t, flags...) cmd = runSwarm(t, flags...)
_, matches = cmd.ExpectRegexp(`[a-f\d]{64}`) // regex hack to extract stdout _, matches = cmd.ExpectRegexp(`[a-f\d]{64}`)
cmd.ExpectExit() cmd.ExpectExit()
manifestAddress = matches[0] // read the received feed manifest manifestAddress = matches[0] // read the received feed manifest