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

Commit 10615d7

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/01-unit/utils/test_opencti_stix2_splitter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ 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; _ = stix_splitter.split_bundle_with_expectations(content)
13+
expectations, _, bundles
14+
_ = stix_splitter.split_bundle_with_expectations(content)
1415
assert expectations == 7016
1516

1617

0 commit comments

Comments
 (0)