-
Notifications
You must be signed in to change notification settings - Fork 73
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
chore(install): Refactor re.setOutput to use bufio scanner #1449
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1449 +/- ##
==========================================
- Coverage 47.53% 47.52% -0.02%
==========================================
Files 123 123
Lines 7416 7420 +4
==========================================
+ Hits 3525 3526 +1
- Misses 3747 3748 +1
- Partials 144 146 +2 ☔ View full report in Codecov by Sentry. |
a1b5ac1
to
505a862
Compare
505a862
to
5d1129e
Compare
5d1129e
to
6302f6a
Compare
6302f6a
to
452f1a1
Compare
@@ -486,3 +484,67 @@ tasks: | |||
assert.Empty(t, e.GetOutput().Metadata()["something"]) | |||
assert.Equal(t, "very", e.GetOutput().Metadata()["clean"]) | |||
} | |||
|
|||
func Test_mergeStringJSON(t *testing.T) { |
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.
This is a long test, perhaps we could break it into many small tests?
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.
Maybe rework the test to be more focus and smaller.
Also fixes invalid JSON warning message on empty string caused by newline in output. Alternative to #1448