Skip to content

Commit

Permalink
Correct channel type in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Mar 28, 2019
1 parent b543d5d commit 723cfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testsdk.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end
@assert sum(length.(contents)) == length(content)
# @assert vcat(contents...) == content

data_channel = Channel{Vector{UInt8}}(0)
data_channel = Channel{AbstractVector{UInt8}}(0)
# content_hash_task = schedule(@task calc_content_hash(data_channel))
content_hash_task = start_task(() -> calc_content_hash(data_channel))
for content in contents
Expand Down

0 comments on commit 723cfe9

Please sign in to comment.