-
-
Notifications
You must be signed in to change notification settings - Fork 39
NRT #181
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
Conversation
| // validation rule should check that but here we should just ignore that | ||
| // "unknown" field. | ||
| if (context.Inputs.TryGetValue(variableRef.Name, out object input) && | ||
| if (context.Inputs != null && |
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.
@Shane32 NRT helps find bug here - NRE before context.Inputs check, see passes_with_claim_on_variable_type_without_inputs_but_fails_later_either. I'll backport this check into master.
Codecov Report
@@ Coverage Diff @@
## develop #181 +/- ##
===========================================
- Coverage 84.47% 83.81% -0.67%
===========================================
Files 9 9
Lines 277 278 +1
Branches 45 46 +1
===========================================
- Hits 234 233 -1
Misses 33 33
- Partials 10 12 +2
Continue to review full report at Codecov.
|
No description provided.