From: Josh Roesslein Date: Sun, 10 Oct 2010 07:16:26 +0000 (-0500) Subject: Consumer credentials must now be provided to run oauth tests. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=68c7458061919abfeda1c76cc175f4c77614aed8;p=tweepy.git Consumer credentials must now be provided to run oauth tests. --- 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)