Skip to content

Commit d11adbf

Browse files
committed
test: fix interface check
1 parent eecc9da commit d11adbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Interfaces.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ end
9999
function _check_copy_into!(ex::AbstractExpression)
100100
container = allocate_container(ex)
101101
prealloc_ex = copy_into!(container, ex)
102-
return container !== nothing && prealloc_ex == ex && prealloc_ex !== container
102+
return container !== nothing && prealloc_ex == ex && prealloc_ex !== ex
103103
end
104104
function _check_count_nodes(ex::AbstractExpression)
105105
return count_nodes(ex) isa Int64

0 commit comments

Comments
 (0)