diff --git a/test/qctrl/__init__.py b/test/qctrl/__init__.py new file mode 100644 index 0000000000..139b265e1a --- /dev/null +++ b/test/qctrl/__init__.py @@ -0,0 +1,11 @@ +# This code is part of Qiskit. +# +# (C) Copyright IBM 2024. +# +# This code is licensed under the Apache License, Version 2.0. You may +# obtain a copy of this license in the LICENSE.txt file in the root directory +# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. +# +# Any modifications or derivative works of this code must retain this +# copyright notice, and modified files need to carry a notice indicating +# that they have been altered from the originals. diff --git a/test/qctrl/test_qctrl.py b/test/qctrl/test_qctrl.py index 0eeebbdfbd..7d5a5bf6e9 100644 --- a/test/qctrl/test_qctrl.py +++ b/test/qctrl/test_qctrl.py @@ -12,8 +12,6 @@ """Tests for job functions using real runtime service.""" -import time - from qiskit import QuantumCircuit from qiskit.quantum_info import Statevector, hellinger_fidelity from qiskit.providers.jobstatus import JobStatus diff --git a/test/unit/fake_provider/__init__.py b/test/unit/fake_provider/__init__.py new file mode 100644 index 0000000000..139b265e1a --- /dev/null +++ b/test/unit/fake_provider/__init__.py @@ -0,0 +1,11 @@ +# This code is part of Qiskit. +# +# (C) Copyright IBM 2024. +# +# This code is licensed under the Apache License, Version 2.0. You may +# obtain a copy of this license in the LICENSE.txt file in the root directory +# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. +# +# Any modifications or derivative works of this code must retain this +# copyright notice, and modified files need to carry a notice indicating +# that they have been altered from the originals. diff --git a/test/unit/fake_provider/test_fake_backends.py b/test/unit/fake_provider/test_fake_backends.py index 066583c7d3..e4ec088342 100644 --- a/test/unit/fake_provider/test_fake_backends.py +++ b/test/unit/fake_provider/test_fake_backends.py @@ -18,7 +18,7 @@ from qiskit.utils import optionals from qiskit_ibm_runtime.fake_provider import FakeAthens, FakePerth -from ..ibm_test_case import IBMTestCase +from ...ibm_test_case import IBMTestCase def get_test_circuit():