From 56db0d3738a257e52126275f662b886050041637 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Sat, 25 Apr 2026 17:59:59 +0530 Subject: [PATCH] Tests: Remove unnecessary version check from test collector --- tests/framework/collector.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/framework/collector.py b/tests/framework/collector.py index 0656a65..2b33056 100644 --- a/tests/framework/collector.py +++ b/tests/framework/collector.py @@ -1,10 +1,6 @@ -import sys from pathlib import Path -if sys.version_info >= (3, 11): - import tomllib -else: - import tomli as tomllib +import tomllib from .bpf_test_case import BpfTestCase