tests: update expected Binary Ninja version to 5.3 (#3011)

This commit is contained in:
Moritz
2026-04-16 18:35:43 +00:00
committed by GitHub
parent c0ce1a3fb5
commit 557f521713
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@
### capa Explorer IDA Pro plugin
### Development
- tests: update binja version to 5.3 @mr-tz #3011
- ci: use explicit and per job permissions @mike-hunhoff #3002
- replace black/isort/flake8 with ruff @mike-hunhoff #2992

View File

@@ -70,4 +70,4 @@ def test_standalone_binja_backend():
@pytest.mark.skipif(binja_present is False, reason="Skip binja tests if the binaryninja Python API is not installed")
def test_binja_version():
version = binaryninja.core_version_info()
assert version.major == 5 and version.minor == 2
assert (version.major, version.minor) >= (5, 3)