We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a7250 commit e303a16Copy full SHA for e303a16
tests/Lib/Process/MemoryMap/ProcessMemoryMapReaderTest.php
@@ -22,7 +22,8 @@ public function testRead()
22
$result = (new ProcessMemoryMapReader())->read(getmypid());
23
$first_line = strtok($result, "\n");
24
$this->assertMatchesRegularExpression(
25
- '/[0-9a-f]+-[0-9a-f]+ [r\-][w\-][x\-][sp\-] [0-9a-f]+ [0-9][0-9][0-9]?:[0-9][0-9][0-9]? [0-9]+ +[^ ].*/',
+ // phpcs:ignore Generic.Files.LineLength.TooLong
26
+ '/[0-9a-f]+-[0-9a-f]+ [r\-][w\-][x\-][sp\-] [0-9a-f]+ [0-9a-z][0-9a-z][0-9a-z]?:[0-9a-z][0-9a-z][0-9a-z]? [0-9]+ +[^ ].*/',
27
$first_line
28
);
29
}
0 commit comments