diff --git a/GNNLux/test/layers/conv_tests.jl b/GNNLux/test/layers/conv_tests.jl index 9323446cc..bff70eb3a 100644 --- a/GNNLux/test/layers/conv_tests.jl +++ b/GNNLux/test/layers/conv_tests.jl @@ -99,7 +99,7 @@ @testset "NNConv" begin edim = 10 - nn = Dense(edim, out_dims * in_dims) + nn = Dense(edim, in_dims * out_dims) l = NNConv(in_dims => out_dims, nn, tanh, aggr = +) test_lux_layer(rng, l, g2, x, sizey=(out_dims, g2.num_nodes), container=true, edge_weight=g2.edata.e) end