~rogpeppe/juju-core/azure

« back to all changes in this revision

Viewing changes to testing/constants.go

[r=gz] Check correct info attr in cloudinit.apiHostAddrs

Fixes a copy/paste error in cloudinit.MachineConfig to agent.Conf
conversion helper function. No test as the only codepath that uses
this goes through verifyConfig which already asserts both StateInfo
and APIInfo are not nil, so not possible to write a failing test
using exposed functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2012, 2013 Canonical Ltd.
 
2
// Licensed under the AGPLv3, see LICENCE file for details.
 
3
 
 
4
package testing
 
5
 
 
6
import (
 
7
        "time"
 
8
)
 
9
 
 
10
// ShortWait is a reasonable amount of time to block waiting for something that
 
11
// shouldn't actually happen. (as in, the test suite will *actually* wait this
 
12
// long before continuing)
 
13
const ShortWait = 50 * time.Millisecond
 
14
 
 
15
// LongWait is used when something should have already happened, or happens
 
16
// quickly, but we want to make sure we just haven't missed it. As in, the test
 
17
// suite should proceed without sleeping at all, but just in case. It is long
 
18
// so that we don't have spurious failures without actually slowing down the
 
19
// test suite
 
20
const LongWait = 500 * time.Millisecond