Skip to content

Commit 1b7380e

Browse files
test: fix threading test
1 parent 8c3a2d8 commit 1b7380e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/cache_macro.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ end
130130
@test stats.hits == stats.misses == stats.clears == 0
131131
end
132132

133-
@cache function f4(x::Union{BasicSymbolic, Int})::Union{BasicSymbolic, Int}
133+
@cache function f4(x::Union{BasicSymbolic, Number})::Union{BasicSymbolic, Number}
134134
x isa Number && return x
135135
if iscall(x)
136136
return maketerm(typeof(x), operation(x), map(f4, arguments(x)), metadata(x))

0 commit comments

Comments
 (0)