From 8712481afeb0dbb5534c3c71faccb455203f8c2d Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 13 Feb 2021 16:02:10 -0600 Subject: [PATCH] Update test using API.create_block to pass keyword argument --- tests/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api.py b/tests/test_api.py index 1e5acc6..d22187a 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -254,7 +254,7 @@ class TweepyAPITests(TweepyTestCase): @tape.use_cassette('testcreatedestroyblock.yaml', serializer='yaml') def testcreatedestroyblock(self): - self.api.create_block('twitter') + self.api.create_block(screen_name='twitter') self.api.destroy_block('twitter') self.api.create_friendship(screen_name='twitter') # restore -- 2.25.1