File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ def test_graph_data_create_batch():
101101 data_manager = _DataManager (graph = graph , target = target )
102102 item1 = data_manager [0 ]
103103 item2 = data_manager [1 ]
104- batch_data = _GraphDataManager ._create_batch ([item1 , item2 ])
104+ batch_data = _GraphDataManager .create_batch ([item1 , item2 ])
105105 assert hasattr (batch_data , "graph" )
106106 assert hasattr (batch_data , "target" )
107107 batched_graphs = batch_data .graph
@@ -122,7 +122,7 @@ def test_tensor_data_create_batch():
122122 data_manager = _DataManager (pippo = pippo , pluto = pluto , paperino = paperino )
123123 item1 = data_manager [0 ]
124124 item2 = data_manager [1 ]
125- batch_data = _TensorDataManager ._create_batch ([item1 , item2 ])
125+ batch_data = _TensorDataManager .create_batch ([item1 , item2 ])
126126 assert hasattr (batch_data , "pippo" )
127127 assert hasattr (batch_data , "pluto" )
128128 assert hasattr (batch_data , "paperino" )
You can’t perform that action at this time.
0 commit comments