GitHub user FSchumacher opened a pull request: https://github.com/apache/jmeter/pull/407
Render min and max values in Summary Report as `#N/A` ## Description Render min and max values in Summary Report as `#N/A` ## Motivation and context In the Summary Report min and max values are initialized with `Long#MAX_VALUE` and `Long#MIN_VALUE` to work easily with them. Those initial values are looking weird in the rendered view. Hide them by replacing the extrema by the text `#N/A`. Bugzilla Id: 62822 ## How Has This Been Tested? Used the GUI to display `Summary Report` and run a simple test. ## Types of changes <!--- What types of changes does your code introduce? Delete as appropriate --> - Bug fix (non-breaking change which fixes an issue) ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [x] My code follows the [code style][style-guide] of this project. - [ ] I have updated the documentation accordingly. [style-guide]: https://wiki.apache.org/jmeter/CodeStyleGuidelines You can merge this pull request into a Git repository by running: $ git pull https://github.com/FSchumacher/jmeter bug-62822-default-values-in-summary-report Alternatively you can review and apply these changes as the patch at: https://github.com/apache/jmeter/pull/407.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #407 ---- commit 6fd61d3da36167d577b7777a313bdea61eebadec Author: Felix Schumacher <felix.schumacher@...> Date: 2018-10-13T13:37:11Z Render min an max values in Summary Report as `#N/A` In the Summary Report min and max values are initialized with `Long#MAX_VALUE` and `Long#MIN_VALUE` to work easily with them. Those initial values are looking weird in the rendered view. Hide them by replacing the extrema by the text `#N/A`. Bugzilla Id: 62822 ---- ---