minor test fix
This commit is contained in:
parent
58992f60d0
commit
b0bb4f96be
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user