From 68c7458061919abfeda1c76cc175f4c77614aed8 Mon Sep 17 00:00:00 2001 From: Josh Roesslein Date: Sun, 10 Oct 2010 02:16:26 -0500 Subject: [PATCH] Consumer credentials must now be provided to run oauth tests. --- tests.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests.py b/tests.py index 246e73a..c8bf554 100644 --- a/tests.py +++ b/tests.py @@ -9,6 +9,8 @@ from tweepy import * # Must supply twitter account credentials for tests username = '' password = '' +consumer_key = '' +consumer_secret = '' """Unit tests""" @@ -308,9 +310,6 @@ class TweepyCursorTests(unittest.TestCase): class TweepyAuthTests(unittest.TestCase): - consumer_key = 'ZbzSsdQj7t68VYlqIFvdcA' - consumer_secret = '4yDWgrBiRs2WIx3bfvF9UWCRmtQ2YKpKJKBahtZcU' - def testoauth(self): auth = OAuthHandler(self.consumer_key, self.consumer_secret) -- 2.25.1