~juju-qa/ubuntu/xenial/juju/2.0-rc2

« back to all changes in this revision

Viewing changes to src/github.com/juju/juju/cmd/juju/subnet/list_test.go

  • Committer: Nicholas Skaggs
  • Date: 2016-09-30 14:39:30 UTC
  • mfrom: (1.8.1)
  • Revision ID: nicholas.skaggs@canonical.com-20160930143930-vwwhrefh6ftckccy
import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
        s.api.Subnets = s.api.Subnets[0:0]
224
224
 
225
225
        s.AssertRunSucceeds(c,
226
 
                `no subnets found matching requested criteria\n`,
 
226
                `No subnets found matching requested criteria.\n`,
227
227
                "", // empty stdout.
228
228
                "--space", "default",
229
229
        )
237
237
        s.api.Subnets = s.api.Subnets[0:0]
238
238
 
239
239
        s.AssertRunSucceeds(c,
240
 
                `no subnets to display\n`,
 
240
                `No subnets to display.\n`,
241
241
                "", // empty stdout.
242
242
        )
243
243