Skip to content

Commit

Permalink
Fix TAP reporter (3 real dots instead if 3 dots character) (#2837)
Browse files Browse the repository at this point in the history
Co-authored-by: nvuillam <[email protected]>
  • Loading branch information
nvuillam and megalinter-bot authored Jul 26, 2023
1 parent 1817656 commit f7f767a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-linter.yml file, or with `oxsecurity/megalinter:beta` docker image

- Fixes
- Fix TAP reporter (3 real dots instead if 3 dots character)

- Linter versions upgrades
- [trufflehog](https://github.com/trufflesecurity/trufflehog) from 3.44.0 to **3.45.0** on 2023-07-25
- [cfn-lint](https://github.com/aws-cloudformation/cfn-lint) from 0.78.2 to **0.79.1** on 2023-07-26
Expand Down
2 changes: 1 addition & 1 deletion megalinter/reporters/TapReporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def produce_report(self):
)
std_out_tap = "\\n".join(std_out_tap.splitlines())
std_out_tap = std_out_tap.replace(":", " ")
detailed_lines = [" ---", f" message: {std_out_tap}", " "]
detailed_lines = [" ---", f" message: {std_out_tap}", " ..."]
file_tap_lines += detailed_lines
tap_report_lines += file_tap_lines
# Write TAP file
Expand Down

0 comments on commit f7f767a

Please sign in to comment.