~ubuntu-branches/ubuntu/saucy/juju-core/saucy-updates

« back to all changes in this revision

Viewing changes to src/launchpad.net/juju-core/environs/testing/polling.go

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-09-03 14:22:22 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130903142222-9mes2r8wqr0bs7lp
Tags: 1.13.3-0ubuntu1
New upstream point release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
package testing
5
5
 
6
6
import (
7
 
        "launchpad.net/juju-core/environs"
 
7
        "launchpad.net/juju-core/provider"
8
8
        "launchpad.net/juju-core/utils"
9
9
)
10
10
 
66
66
        // The one irregularity here is that LongAttempt goes on the list of
67
67
        // strategies that need patching.  To keep testing simple, we treat
68
68
        // the given attempts and LongAttempt as a single slice from here on.
69
 
        combinedStrategies := append(strategies, &environs.LongAttempt, &environs.ShortAttempt)
 
69
        combinedStrategies := append(strategies, &provider.LongAttempt, &provider.ShortAttempt)
70
70
        return internalPatchAttemptStrategies(combinedStrategies)
71
71
}