Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ewinston committed Jun 12, 2018
1 parent a30b48f commit 7ce53ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/python/test_reordering.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import qiskit
from qiskit import QuantumJob
from qiskit.wrapper import register, available_backends, get_backend
from qiskit.wrapper import compile
import qiskit._compiler
from .common import requires_qe_access, QiskitTestCase, slow_test


Expand Down Expand Up @@ -50,8 +50,8 @@ def test_basic_reordering(self, QE_TOKEN, QE_URL, hub=None, group=None, project=
circ.measure(q[1], c[0])

shots = 2000
qobj_real = compile(circ, real, shots=shots)
qobj_sim = compile(circ, sim, shots=shots)
qobj_real = qiskit._compiler.compile(circ, real, shots=shots)
qobj_sim = qiskit._compiler.compile(circ, sim, shots=shots)
q_job_real = QuantumJob(qobj_real, backend=real, preformatted=True,
shots=shots)
q_job_sim = QuantumJob(qobj_sim, backend=sim, preformatted=True,
Expand Down Expand Up @@ -97,8 +97,8 @@ def test_multi_register_reordering(self, QE_TOKEN, QE_URL,
circ.measure(q2[0], c1[1])

shots = 4000
qobj_real = compile(circ, real, shots=shots)
qobj_sim = compile(circ, sim, shots=shots)
qobj_real = qiskit._compiler.compile(circ, real, shots=shots)
qobj_sim = qiskit._compiler.compile(circ, sim, shots=shots)
q_job_real = QuantumJob(qobj_real, backend=real, preformatted=True,
shots=shots)
q_job_sim = QuantumJob(qobj_sim, backend=sim, preformatted=True,
Expand Down

0 comments on commit 7ce53ea

Please sign in to comment.