From da0a2d763d5592e8e3e472ecfcc17d7915b065b7 Mon Sep 17 00:00:00 2001 From: Kevin Tian Date: Wed, 13 Nov 2024 10:02:48 -0500 Subject: [PATCH] Update ibm_test_case (#2042) --- test/ibm_test_case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ibm_test_case.py b/test/ibm_test_case.py index 28d18585b..3f4e92d6d 100644 --- a/test/ibm_test_case.py +++ b/test/ibm_test_case.py @@ -238,7 +238,7 @@ def _find_sim_backends(cls): # Simulators or tests backends can be not available cls.sim_backends[cls.service.channel] = None for backend in backends: - if backend.simulator or backend.name.startswith("test_"): + if backend.simulator or backend.name.startswith("test_eagle"): cls.sim_backends[cls.service.channel] = backend.name break