Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/std/channel_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ describe "unbuffered" do

it "works with select else" do
ch1 = Channel(Int32).new
Channel.select({ch1.receive_select_action}, true).should eq({1, Channel::NotReady.new})
Channel.non_blocking_select({ch1.receive_select_action}).should eq({1, Channel::NotReady.new})
end

it "can send and receive nil" do
Expand Down