-
Notifications
You must be signed in to change notification settings - Fork 2
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 tests for JL 1.10 #1042
fix tests for JL 1.10 #1042
Conversation
@@ -151,7 +153,7 @@ end | |||
@test !isPrior(dfg, :abf1) # f1 is not a prior | |||
@test lsfPriors(dfg) == [] | |||
#FIXME don't know what it is supposed to do | |||
@test_broken lsfTypes(dfg) | |||
@test 0 < length( lsfTypes(dfg) ) |
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.
[JuliaFormatter] reported by reviewdog 🐶
@test 0 < length( lsfTypes(dfg) ) | |
@test 0 < length(lsfTypes(dfg)) |
@@ -161,7 +163,7 @@ end | |||
@test getVariableType(dfg, :a) isa Position{1} | |||
|
|||
#TODO what is lsTypes supposed to return? | |||
@test_broken lsTypes(dfg) | |||
@test 0 < length( lsTypes(dfg) ) |
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.
[JuliaFormatter] reported by reviewdog 🐶
@test 0 < length( lsTypes(dfg) ) | |
@test 0 < length(lsTypes(dfg)) |
Codecov Report
@@ Coverage Diff @@
## master #1042 +/- ##
==========================================
+ Coverage 77.51% 77.60% +0.08%
==========================================
Files 26 26
Lines 2273 2282 +9
==========================================
+ Hits 1762 1771 +9
Misses 511 511 see 6 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
This is not really fixing the test. It should check for the returned values specifically |
No description provided.