From a24ac5e1241d4c7f9f39985ac7a5c4122118f54c Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 7 May 2022 07:39:17 -0500 Subject: [PATCH] Improve unittest.TestCase subclass name for Client tests --- tests/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index 7fe93d4..8a56cd2 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -7,7 +7,7 @@ from config import ( import tweepy -class TweepyTestCase(unittest.TestCase): +class TweepyClientTests(unittest.TestCase): def setUp(self): self.client = tweepy.Client( -- 2.25.1