Skip to content

Commit c48ee55

Browse files
TysonAndrefelixfbecker
authored andcommitted
tests: fix benchmark on case sensitive filesystems (#573)
On case insensitive file systems, such as the defaults for Mac OS/Windows, this works, but it doesn't work for ext4, etc. The folder being checked out is `validation/frameworks/codeigniter`, this searched for `validation/frameworks/CodeIgniter`
1 parent 20960a8 commit c48ee55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Performance.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
$totalSize = 0;
1616

17-
$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "CodeIgniter", "cakephp"];
17+
$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "codeigniter", "cakephp"];
1818

1919
foreach($frameworks as $framework) {
2020
$iterator = new RecursiveDirectoryIterator(__DIR__ . "/validation/frameworks/$framework");

0 commit comments

Comments
 (0)