Skip to content

Commit a02fd73

Browse files
committed
(temp, debugging) Include var-dumper
1 parent 1c67497 commit a02fd73

File tree

3 files changed

+246
-3
lines changed

3 files changed

+246
-3
lines changed

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,8 @@
115115
"branch-alias": {
116116
"dev-main": "13.0-dev"
117117
}
118+
},
119+
"require-dev": {
120+
"symfony/var-dumper": "^7.3"
118121
}
119122
}

composer.lock

Lines changed: 242 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/unit/TextUI/SourceFilterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ public function testDeterminesWhetherFileIsIncluded(array $expectations, Source
422422
$this->assertFileExists($file);
423423
$this->assertSame(
424424
$shouldInclude,
425-
new SourceFilter((new SourceMapper)->map($source))->includes($file),
425+
(new SourceFilter($source))->includes($file),
426426
sprintf('expected match to return %s for: %s', json_encode($shouldInclude), $file),
427427
);
428428
}

0 commit comments

Comments
 (0)