Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 0450355

Browse files
committed
[client] handle too large items
1 parent 10615d7 commit 0450355

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/01-unit/utils/test_opencti_stix2_splitter.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ def test_split_bundle():
1010
stix_splitter = OpenCTIStix2Splitter()
1111
with open("./tests/data/enterprise-attack.json") as file:
1212
content = file.read()
13-
expectations, _, bundles
14-
_ = stix_splitter.split_bundle_with_expectations(content)
13+
expectations, _, bundles, _ = stix_splitter.split_bundle_with_expectations(content)
1514
assert expectations == 7016
1615

1716

0 commit comments

Comments
 (0)