aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_constructor.py')
-rw-r--r--tests/test_constructor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_constructor.py b/tests/test_constructor.py
index 720f58d..fac3763 100644
--- a/tests/test_constructor.py
+++ b/tests/test_constructor.py
@@ -4,8 +4,8 @@ from mastodon.Mastodon import MastodonIllegalArgumentError
4 4
5def test_constructor_from_filenames(): 5def test_constructor_from_filenames():
6 api = Mastodon( 6 api = Mastodon(
7 'client.credentials', 7 'tests/client.credentials',
8 access_token = 'access.credentials') 8 access_token = 'tests/access.credentials')
9 assert api.client_id == 'foo' 9 assert api.client_id == 'foo'
10 assert api.client_secret == 'bar' 10 assert api.client_secret == 'bar'
11 assert api.access_token == 'baz' 11 assert api.access_token == 'baz'
Powered by cgit v1.2.3 (git 2.41.0)