diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-07-13 22:02:19 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-13 22:20:48 +0200 |
commit | a9dd92393081df6d46115cae19e1b9771f90352f (patch) | |
tree | d5d78e2719bdd6a620ec8d99d02cacd7dc0f5f88 /application/test/tests/test_api_v1.php | |
parent | 3bd289a3c14f377c3c689f97cf20366571f6add9 (diff) |
Add site URL to authentication error
This might help users if they run their own installation, but forget to
set the URL in the client config and then run into this error.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/test/tests/test_api_v1.php')
-rw-r--r-- | application/test/tests/test_api_v1.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/test/tests/test_api_v1.php b/application/test/tests/test_api_v1.php index 28b1576d0..9fb782563 100644 --- a/application/test/tests/test_api_v1.php +++ b/application/test/tests/test_api_v1.php @@ -80,7 +80,7 @@ class test_api_v1 extends \test\Test { $this->t->is_deeply(array( 'status' => 'error', 'error_id' => 'api/not-authenticated', - 'message' => 'Not authenticated. FileBin requires you to have an account, please go to the homepage for more information.', + 'message' => 'Not authenticated. FileBin requires you to have an account, please go to the homepage at http://127.0.0.1:23115/ for more information.', ), $ret, "expected error"); } } |