From 210789a5fe6a279fcdc9961536b6fbc6ac03fca3 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 13 Feb 2017 09:01:04 +0200 Subject: [PATCH] Update error message for test_init_with_token https://github.com/pylast/pylast/pull/198#issuecomment-279208373 --- tests/test_pylast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_pylast.py b/tests/test_pylast.py index a1b6fa5..59c71c1 100755 --- a/tests/test_pylast.py +++ b/tests/test_pylast.py @@ -2172,7 +2172,7 @@ class TestPyLast(unittest.TestCase): msg = str(exc) # Assert - self.assertEqual(msg, "Invalid authentication token supplied") + self.assertEqual(msg, "Unauthorized Token - This token has not been issued") @flaky(max_runs=5, min_passes=1)