diff --git a/pkg/grid/v1/topology_test.go b/pkg/grid/v1/topology_test.go index d25635e..a6023e0 100644 --- a/pkg/grid/v1/topology_test.go +++ b/pkg/grid/v1/topology_test.go @@ -11,13 +11,11 @@ import ( ) func generateTopology(timestamp int64) *Topology { - tp, _ := os.ReadFile("FullGrid_TP.xml") // read the content of file - ssh, _ := os.ReadFile("FullGrid_SSH.xml") // read the content of file + tp, _ := os.ReadFile("FullGrid_TP.xml") // read the content of file return &Topology{ CreatedAt: uint64(timestamp), Tp: tp, - Ssh: ssh, } }