From c276560b861a55612c408c71de743d610a25dba2 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Wed, 8 Jan 2025 18:08:39 +0100 Subject: [PATCH] temp: fix device tests test_protection_levels by removing session.end call [no changelog] --- tests/device_tests/test_protection_levels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/device_tests/test_protection_levels.py b/tests/device_tests/test_protection_levels.py index dad2eb6299..e3af03895f 100644 --- a/tests/device_tests/test_protection_levels.py +++ b/tests/device_tests/test_protection_levels.py @@ -65,7 +65,7 @@ def _assert_protection( if session.protocol_version == ProtocolVersion.PROTOCOL_V2: new_session = session.client.get_session() session.lock() - session.end() + # session.end() if session.protocol_version == ProtocolVersion.PROTOCOL_V1: new_session = session.client.get_session() return Session(new_session)