-
Notifications
You must be signed in to change notification settings - Fork 764
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
Fixes for nested resource and scope interop issues #1827
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1827 +/- ##
==========================================
+ Coverage 95.03% 95.07% +0.04%
==========================================
Files 371 371
Lines 21671 21882 +211
Branches 15 15
==========================================
+ Hits 20594 20805 +211
Misses 1077 1077
Flags with carried forward coverage won't be shown. Click here to find out more.
|
}, | ||
"dependsOn": [ | ||
"[resourceId('My.Rp/parentType/childType', split(format('{0}/{1}', 'basicParent', 'basicChild'), '/')[0], split(format('{0}/{1}', 'basicParent', 'basicChild'), '/')[1])]", | ||
"[resourceId('My.Rp/parentType/childType', 'basicParent', 'basicChild')]", |
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.
basicParent [](start = 52, length = 11)
This was annoying me when I was converting some of our internal templates to Bicep.
@@ -13,7 +13,7 @@ namespace Bicep.Core.UnitTests.Assertions | |||
{ | |||
public static class JTokenAssertionsExtensions | |||
{ | |||
public static JTokenAssertions Should(this JToken instance) | |||
public static JTokenAssertions Should(this JToken? instance) |
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.
JToken [](start = 51, length = 6)
I'm guessing this led to usages of !
to suppress the nullness error all over the place. Worth going back to clean up?
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.
Contributing a Pull Request
If you haven't already, read the full contribution guide. The guide may have changed since the last time you read it, so please double-check. Once you are done and ready to submit your PR, run through the relevant checklist below.
Contributing a feature
Fixes #1810
This fixes the following issues: