Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tests due to bad input to assemble function (Qiskit#1039)
In Qiskit/qiskit#5298 a bug was fixed to ensure that a singe entry list passed to `transpile()` would always return a list instead of just a circuit object. However, in the aer tests there were a couple of places that were building a list assuming transpile would return a bare circuit object. When the terra fix merged changing the return type the tests started to fail because the input to the `assemble()` function was now a list of a list of circuits instead of the intend list of circuits. This commit fixes this issue so it works with the corrected terra behavior.
- Loading branch information