From ca043275d6d5e0dc6d97d6fd4310ea900972ecbc Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 13 Feb 2021 16:10:32 -0600 Subject: [PATCH] Update test using API.destroy_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 d22187a..505194c 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -255,7 +255,7 @@ class TweepyAPITests(TweepyTestCase): @tape.use_cassette('testcreatedestroyblock.yaml', serializer='yaml') def testcreatedestroyblock(self): self.api.create_block(screen_name='twitter') - self.api.destroy_block('twitter') + self.api.destroy_block(screen_name='twitter') self.api.create_friendship(screen_name='twitter') # restore @tape.use_cassette('testblocks.json') -- 2.25.1