Browse Source

Runs a go fmt

Wade Simba Khadder 9 years ago
parent
commit
e4c9ebddfb
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      internal/graph/graph.go
  2. 1
    1
      internal/graph/graph_test.go

+ 1
- 1
internal/graph/graph.go View File

16
 package graph
16
 package graph
17
 
17
 
18
 import (
18
 import (
19
+	"errors"
19
 	"fmt"
20
 	"fmt"
20
 	"math"
21
 	"math"
21
 	"path/filepath"
22
 	"path/filepath"
22
 	"sort"
23
 	"sort"
23
-	"errors"
24
 	"strconv"
24
 	"strconv"
25
 	"strings"
25
 	"strings"
26
 
26
 

+ 1
- 1
internal/graph/graph_test.go View File

109
 type TrimTreeTestCase struct {
109
 type TrimTreeTestCase struct {
110
 	Initial  *Graph
110
 	Initial  *Graph
111
 	Expected []ExpectedNode
111
 	Expected []ExpectedNode
112
-	Keep nodePtrSet
112
+	Keep     nodePtrSet
113
 }
113
 }
114
 
114
 
115
 // Makes the edge from parent to child residual
115
 // Makes the edge from parent to child residual