-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Missing generators.jl test #34450
Missing generators.jl test #34450
Conversation
Looks like this has a whitespace issue. |
Maybe the whitespace check fail is unrelated? In any case, I can't find any trailing whitespace |
Whitespace check fail was a git fetch error, I restarted the test. |
Bump? |
test/iterators.jl
Outdated
@@ -3,6 +3,9 @@ | |||
using Base.Iterators | |||
using Random | |||
|
|||
import Base: IteratorSize, SizeUnknown | |||
@test IteratorSize(Any) isa SizeUnknown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@test IteratorSize(Any) isa SizeUnknown | |
@test Base.IteratorSize(Any) isa Base.SizeUnknown |
seems like it would make the test more "local".
test/iterators.jl
Outdated
@@ -3,6 +3,9 @@ | |||
using Base.Iterators | |||
using Random | |||
|
|||
import Base: IteratorSize, SizeUnknown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import Base: IteratorSize, SizeUnknown |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok
Bump? |
Uncovered