Skip to content

Commit

Permalink
Revert test stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhartman committed Sep 12, 2023
1 parent 9ebc36a commit d78d5e6
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions test/python/circuit/test_circuit_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,14 @@
# that they have been altered from the originals.

"""Test operations on circuit.data."""
from qiskit.circuit import QuantumCircuit, ClassicalRegister, QuantumRegister, Parameter, CircuitInstruction, Operation, Clbit

from qiskit.circuit import QuantumCircuit, QuantumRegister, Parameter, CircuitInstruction, Operation
from qiskit.circuit.library import HGate, XGate, CXGate, RXGate

from qiskit.test import QiskitTestCase
from qiskit.circuit.exceptions import CircuitError


class TestCircuitData(QiskitTestCase):
"""Tests the rust-side CircuitData struct."""
def test_circuit_data(self):
qr = QuantumRegister(5)
cr = ClassicalRegister(4)
qc = QuantumCircuit(qr, cr)


class TestQuantumCircuitInstructionData(QiskitTestCase):
"""QuantumCircuit.data operation tests."""

Expand Down

0 comments on commit d78d5e6

Please sign in to comment.