minor test fix

This commit is contained in:
Mikkel Milo 2016-03-13 16:21:47 +01:00
parent 58992f60d0
commit b0bb4f96be
1 changed files with 7 additions and 4 deletions

View File

@ -1,12 +1,15 @@
package main
import "fmt"
import (
"fmt"
"lib/AbsDataStructures"
)
func main() {
n := &graph.Node{Value: "1"}
n2 := new(graph.Node)
n := &Nodes.Node{Value: "1"}
n2 := new(Nodes.Node)
n2.Value = "2"
n3 := new(graph.Node)
n3 := new(Nodes.Node)
n3.Value = "3"
n.SetPointTo(n2)