From 876ecc19572f98bd40c128d4e01e5a3a949c5153 Mon Sep 17 00:00:00 2001 From: Christoph Burschka Date: Mon, 4 Apr 2016 18:29:25 +0000 Subject: Test with domain argument. If a bridge actually uses the domain part when authenticating, then the unit tests also needs to be able to pass one instead of hardcoding "localhost". --- tests/test.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tests/test.php') diff --git a/tests/test.php b/tests/test.php index 91b2dbb..c37fa82 100755 --- a/tests/test.php +++ b/tests/test.php @@ -1,16 +1,17 @@ #!/usr/bin/env php + test.php '); } $valid_account = [ 'user' => $_SERVER['argv'][1], - 'password' => $_SERVER['argv'][2], + 'domain' => $_SERVER['argv'][2], + 'password' => $_SERVER['argv'][3], ]; require_once __DIR__ . '/unit_test.php'; -- cgit v1.1