From b814d3f0ff979ff3447c4ef7f75c9e09756dba1b Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Fri, 22 Feb 2013 13:26:26 +0800 Subject: [PATCH] Fixed wrong parameter passed to built-in PHP server --- moodle-behat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moodle-behat.py b/moodle-behat.py index f113045..a71a9ff 100755 --- a/moodle-behat.py +++ b/moodle-behat.py @@ -104,7 +104,7 @@ try: cmd.append('--config=%s/behat/behat.yml' % (M.get('behat_dataroot'))) cmd = ' '.join(cmd) - phpCommand = '%s -S http://localhost:8000' % (C.get('php')) + phpCommand = '%s -S localhost:8000' % (C.get('php')) seleniumCommand = None if seleniumPath: seleniumCommand = '%s -jar %s' % (C.get('java'), seleniumPath) -- 2.11.0