Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Remove focus: true #12962

Merged
Merged
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 @@ -570,7 +570,7 @@ describe Channel do
end
end

it "returns correct index for array argument", focus: true do
it "returns correct index for array argument" do
ch = [Channel(String).new, Channel(String).new, Channel(String).new]
channels = [ch[0], ch[2], ch[1]] # shuffle around to get non-sequential lock_object_ids
spawn_and_wait(->{ channels[0].send "foo" }) do
Expand Down