diff options
author | Arlo Breault <abreault@wikimedia.org> | 2022-08-30 19:40:40 -0400 |
---|---|---|
committer | Arlo Breault <abreault@wikimedia.org> | 2022-08-30 19:42:35 -0400 |
commit | 901f04f7d82a3b4cf4a7adaebbedac9a9759a39e (patch) | |
tree | 055a87115ff0f02a9257d0e214e2eec75d1b1448 /tests/parser/ParserTestResult.php | |
parent | 2169392911a8b744fd84708f49e8135acbd07106 (diff) | |
download | mediawikicore-901f04f7d82a3b4cf4a7adaebbedac9a9759a39e.tar.gz mediawikicore-901f04f7d82a3b4cf4a7adaebbedac9a9759a39e.zip |
Remove comment from parser test result description
It's more confusing than helpful in the descriptions current use,
showing which test is running.
Change-Id: Ic3358f9f9fe9eea4ddd4f19cc418267893a9cdfb
Diffstat (limited to 'tests/parser/ParserTestResult.php')
-rw-r--r-- | tests/parser/ParserTestResult.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/parser/ParserTestResult.php b/tests/parser/ParserTestResult.php index 7429c5cebbe2..be8472898737 100644 --- a/tests/parser/ParserTestResult.php +++ b/tests/parser/ParserTestResult.php @@ -45,7 +45,6 @@ class ParserTestResult { } public function getDescription() { - return ( $this->test->comment ?? '' ) . - "{$this->test->testName} [{$this->mode}]"; + return "{$this->test->testName} [{$this->mode}]"; } } |