-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[*test] Add NewNopSettingsWithType everywhere #12357
[*test] Add NewNopSettingsWithType everywhere #12357
Conversation
36b6bb5
to
8d363d0
Compare
Codecov ReportAttention: Patch coverage is
❌ Your patch status has failed because the patch coverage (84.84%) is below the target coverage (95.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## main #12357 +/- ##
==========================================
- Coverage 91.55% 91.51% -0.04%
==========================================
Files 467 467
Lines 25615 25623 +8
==========================================
- Hits 23452 23450 -2
- Misses 1764 1774 +10
Partials 399 399 ☔ View full report in Codecov by Sentry. |
b5b75dc
to
0daabd9
Compare
0daabd9
to
267dbaa
Compare
a4ae175
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description <!-- Issue number if applicable --> Creates `NewNopSettingsWithType` function on test modules and deprecates the `NewNopSettings` functions on those modules. Replace all usages of `NewNopSettings` with `NewNopSettingsWithType`. Part of open-telemetry#12305 but applied to all component kinds. #### Link to tracking issue Updates open-telemetry#12221
…12381) <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description <!-- Issue number if applicable --> Error out on mismatched type for all component kinds. Same as #12305 but for all component kinds. #### Link to tracking issue Requires #12357 Fixes #12221
Description
Creates
NewNopSettingsWithType
function on test modules and deprecates theNewNopSettings
functions on those modules. Replace all usages ofNewNopSettings
withNewNopSettingsWithType
.Part of #12305 but applied to all component kinds.
Link to tracking issue
Updates #12221