-
-
Notifications
You must be signed in to change notification settings - Fork 137
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 parsing of multi line text #590
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #590 +/- ##
==========================================
+ Coverage 77.37% 77.43% +0.06%
==========================================
Files 21 21
Lines 7704 7738 +34
==========================================
+ Hits 5961 5992 +31
- Misses 1333 1335 +2
- Partials 410 411 +1 |
if c.docFirstLineIndentColumn > c.docLineIndentColumn { | ||
return errors.New("invalid number of indent is specified in the document header") | ||
if s.firstLineIndentColumn > s.lineIndentColumn { | ||
return errors.New("invalid number of indent is specified in the multi line header") |
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.
return errors.New("invalid number of indent is specified in the multi line header") | |
return errors.New("invalid number of indent is specified in the multi-line header") |
Current YAML Test Suite Status:
total:[402] passed:[342] failure:[60] passedRate:[85.074631%]
There are only 4 test cases left that succeed exclusively with
gopkg.in/yaml.v3