fmt
This commit is contained in:
parent
e2534e4210
commit
3941dbac5d
|
@ -108,4 +108,3 @@ func TestGet_update(t *testing.T) {
|
||||||
t.Fatalf("doesn't look like get: %s", output)
|
t.Fatalf("doesn't look like get: %s", output)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ package module
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"path/filepath"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,6 @@ func TestClient_ResourceProvider(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func TestClient_ResourceProvisioner(t *testing.T) {
|
func TestClient_ResourceProvisioner(t *testing.T) {
|
||||||
clientConn, serverConn := testConn(t)
|
clientConn, serverConn := testConn(t)
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,10 @@ package terraform
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"sort"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestContextGraph(t *testing.T) {
|
func TestContextGraph(t *testing.T) {
|
||||||
|
|
|
@ -59,7 +59,6 @@ func (s *State) Children(path []string) []*ModuleState {
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// AddModule adds the module with the given path to the state.
|
// AddModule adds the module with the given path to the state.
|
||||||
//
|
//
|
||||||
// This should be the preferred method to add module states since it
|
// This should be the preferred method to add module states since it
|
||||||
|
|
Loading…
Reference in New Issue