From c48ee5580878b73d3f0e9c61b2198ec97df3dee6 Mon Sep 17 00:00:00 2001 From: Tyson Andre Date: Mon, 1 Jan 2018 18:31:55 -0800 Subject: [PATCH] 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` --- Performance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Performance.php b/Performance.php index 5022f84..6fc1c28 100644 --- a/Performance.php +++ b/Performance.php @@ -14,7 +14,7 @@ use RecursiveIteratorIterator; $totalSize = 0; -$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "CodeIgniter", "cakephp"]; +$frameworks = ["drupal", "wordpress", "php-language-server", "tolerant-php-parser", "math-php", "symfony", "codeigniter", "cakephp"]; foreach($frameworks as $framework) { $iterator = new RecursiveDirectoryIterator(__DIR__ . "/validation/frameworks/$framework");