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

« back to all changes in this revision

Viewing changes to src/github.com/juju/juju/apiserver/storage/mock_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:
209
209
}
210
210
 
211
211
func (m *mockVolume) Status() (status.StatusInfo, error) {
212
 
        return status.StatusInfo{Status: status.StatusAttached}, nil
 
212
        return status.StatusInfo{Status: status.Attached}, nil
213
213
}
214
214
 
215
215
type mockFilesystem struct {
246
246
}
247
247
 
248
248
func (m *mockFilesystem) Status() (status.StatusInfo, error) {
249
 
        return status.StatusInfo{Status: status.StatusAttached}, nil
 
249
        return status.StatusInfo{Status: status.Attached}, nil
250
250
}
251
251
 
252
252
type mockFilesystemAttachment struct {