Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 92e420c

Browse files
committed
Remove control_flow_test_case
1 parent b5dc04f commit 92e420c

File tree

3 files changed

+5
-43
lines changed

3 files changed

+5
-43
lines changed

test/unit/transpiler/passes/scheduling/control_flow_test_case.py

-38
This file was deleted.

test/unit/transpiler/passes/scheduling/test_dynamical_decoupling.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@
3535
DynamicCircuitInstructionDurations,
3636
)
3737

38-
from .control_flow_test_case import ControlFlowTestCase
38+
from .....ibm_test_case import IBMTestCase
3939

4040
# pylint: disable=invalid-name,not-context-manager
4141

4242

4343
@ddt
44-
class TestPadDynamicalDecoupling(ControlFlowTestCase):
44+
class TestPadDynamicalDecoupling(IBMTestCase):
4545
"""Tests PadDynamicalDecoupling pass."""
4646

4747
def setUp(self):

test/unit/transpiler/passes/scheduling/test_scheduler.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
DynamicCircuitInstructionDurations,
3131
)
3232

33-
from .control_flow_test_case import ControlFlowTestCase
33+
from .....ibm_test_case import IBMTestCase
3434

3535
# pylint: disable=invalid-name,not-context-manager
3636

3737

38-
class TestASAPSchedulingAndPaddingPass(ControlFlowTestCase):
38+
class TestASAPSchedulingAndPaddingPass(IBMTestCase):
3939
"""Tests the ASAP Scheduling passes"""
4040

4141
def test_if_test_gate_after_measure(self):
@@ -884,7 +884,7 @@ def test_c_if_plugin_conversion_with_transpile(self):
884884
self.assertEqual(expected, scheduled)
885885

886886

887-
class TestALAPSchedulingAndPaddingPass(ControlFlowTestCase):
887+
class TestALAPSchedulingAndPaddingPass(IBMTestCase):
888888
"""Tests the ALAP Scheduling passes"""
889889

890890
def test_alap(self):

0 commit comments

Comments
 (0)