Skip to content

Commit d2fd7ac

Browse files
committed
Updatet unit tests
1 parent 623ace0 commit d2fd7ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/slack_sdk/models/test_blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def test_json(self):
397397
ActionsBlock(elements=self.elements).to_dict(),
398398
)
399399
with self.assertRaises(SlackObjectFormationError):
400-
ActionsBlock(elements=self.elements * 3).to_dict()
400+
ActionsBlock(elements=self.elements * 13).to_dict()
401401

402402
def test_element_parsing(self):
403403
elements = [

tests/web/classes/test_blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def test_json(self):
389389
ActionsBlock(elements=self.elements).to_dict(),
390390
)
391391
with self.assertRaises(SlackObjectFormationError):
392-
ActionsBlock(elements=self.elements * 3).to_dict()
392+
ActionsBlock(elements=self.elements * 13).to_dict()
393393

394394

395395
# ----------------------------------------------

0 commit comments

Comments
 (0)