Skip to content

Commit 4adef57

Browse files
committed
Fix
1 parent a173306 commit 4adef57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GNNLux/test/layers/pool.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
x = randn(rng, Float32, in_dims, 10)
99

1010
@testset "GlobalPool" begin
11-
l = GNNLux.GlobalPool(mean)
11+
l = GlobalPool(mean)
1212
test_lux_layer(rng, l, g, x, sizey=(in_dims,1))
1313
end
1414
@testset "GlobalAttentionPool" begin
1515
fgate = Dense(in_dims, 1)
1616
ffeat = Dense(in_dims, in_dims)
17-
l = GNNLux.GlobalAttentionPool(fgate, ffeat)
17+
l = GlobalAttentionPool(fgate, ffeat)
1818
test_lux_layer(rng, l, g, x, sizey=(in_dims,1), container=true)
1919
end
2020
end

0 commit comments

Comments
 (0)