From: Harmon Date: Thu, 24 Mar 2022 21:39:26 +0000 (-0500) Subject: Improve formatting in Client tests X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=749e56664414811ef1972474cf248a2cc0313f92;p=tweepy.git Improve formatting in Client tests --- diff --git a/tests/test_client.py b/tests/test_client.py index 328c9c4..3b1b4c2 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -52,13 +52,15 @@ class TweepyTestCase(unittest.TestCase): @tape.use_cassette("test_retweet_and_unretweet.yaml", serializer="yaml") def test_retweet_and_unretweet(self): - tweet_id = 1415348607813832708 # @TwitterDev Tweet announcing API v2 Retweet endpoints + tweet_id = 1415348607813832708 + # @TwitterDev Tweet announcing API v2 Retweet endpoints self.client.retweet(tweet_id) self.client.unretweet(tweet_id) @tape.use_cassette("test_get_retweeters.yaml", serializer="yaml") def test_get_retweeters(self): - tweet_id = 1415348607813832708 # @TwitterDev Tweet announcing API v2 Retweet endpoints + tweet_id = 1415348607813832708 + # @TwitterDev Tweet announcing API v2 Retweet endpoints self.client.get_retweeters(tweet_id) @tape.use_cassette("test_search_all_tweets.yaml", serializer="yaml")