From bf4695c6bfdd9cffbaf45b2d1912b94cc8cbab28 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Thu, 29 Feb 2024 15:52:58 +0800 Subject: [PATCH] binja: update binja version check after 4.0 release --- tests/test_binja_features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_binja_features.py b/tests/test_binja_features.py index 78addff7..c226d2ee 100644 --- a/tests/test_binja_features.py +++ b/tests/test_binja_features.py @@ -63,4 +63,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 == 3 and version.minor == 5 + assert version.major == 4 and version.minor == 0