Consumer credentials must now be provided to run oauth tests.
authorJosh Roesslein <jroesslein@gmail.com>
Sun, 10 Oct 2010 07:16:26 +0000 (02:16 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Sun, 10 Oct 2010 07:16:26 +0000 (02:16 -0500)
tests.py

index 246e73adfc2337d04a2a7b089f873db794935244..c8bf5545487b6ebe8292d180a79d3e040a743da4 100644 (file)
--- 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)