Skip to content

Commit e575066

Browse files
committed
Fix TopK pool test
1 parent b8c479d commit e575066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GNNLux/test/layers/pool.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
@test size(p.p) == (in_channel,)
3939
@test eltype(p.Ã) === T
4040
@test size(p.Ã) == (k, k)
41-
y = p(X, ps, st)
41+
y, st = p(X, ps, st)
4242
@test size(y) == (in_channel, k)
4343
end
4444
end

0 commit comments

Comments
 (0)