Skip to content

Commit ce011b9

Browse files
Update test/core/aliasing.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2020b7a commit ce011b9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/core/aliasing.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ function buffer_equals(x, y)
44
if x isa Reactant.ConcreteIFRTArray
55
y.data.buffer == x.data.buffer
66
elseif x isa Reactant.ConcretePJRTArray
7-
all(((x,y),) -> x == y,
8-
zip(x.data, y.data))
7+
all(((x, y),) -> x == y, zip(x.data, y.data))
98
else
109
error("invalid array type $(typeof(x))")
1110
end

0 commit comments

Comments
 (0)