From df4f4647e8723eca9d52fb946bcbbf941886642c Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Mon, 22 Feb 2016 17:45:51 -0800 Subject: [PATCH] Fix parameter parsing in parserTests.php Change-Id: Iafb8a60f040cd94eb1b8c30ea5ace9cff4272c0e --- tests/parserTests.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/parserTests.php b/tests/parserTests.php index 02c012337a..7e6f68c281 100644 --- a/tests/parserTests.php +++ b/tests/parserTests.php @@ -24,9 +24,9 @@ * @ingroup Testing */ -$otions = [ 'quick', 'color', 'quiet', 'help', 'show-output', +$options = [ 'quick', 'color', 'quiet', 'help', 'show-output', 'record', 'run-disabled', 'run-parsoid' ]; -$optionsWithArgs = [ 'regex', 'filter', 'seed', 'setversion' ]; +$optionsWithArgs = [ 'regex', 'filter', 'seed', 'setversion', 'file' ]; require_once __DIR__ . '/../maintenance/commandLine.inc'; require_once __DIR__ . '/TestsAutoLoader.php'; -- 2.20.1