-
Notifications
You must be signed in to change notification settings - Fork 207
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 issues with extra quotes in Logstash converted YAML files. #587
Fix issues with extra quotes in Logstash converted YAML files. #587
Conversation
Signed-off-by: David Venable <[email protected]>
@@ -435,6 +438,19 @@ void visit_array_with_array_of_size_more_than_one_returns_list_of_size_more_than | |||
assertThat(actualList, equalTo(TestDataProvider.arrayData())); | |||
} | |||
|
|||
@Test | |||
void visit_array_with_array_of_with_quoted_strings_returns_them_unquoted() { |
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.
There are some extra words in this test name.
Can you also normalize
They can also be quoted strings |
Codecov Report
@@ Coverage Diff @@
## main #587 +/- ##
============================================
+ Coverage 92.12% 92.18% +0.05%
+ Complexity 569 566 -3
============================================
Files 71 71
Lines 1727 1727
Branches 144 144
============================================
+ Hits 1591 1592 +1
+ Misses 105 102 -3
- Partials 31 33 +2
Continue to review full report at Codecov.
|
Signed-off-by: David Venable <[email protected]>
Description
Normalizes strings by removing quotes which should not be present.
Issues Resolved
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.