Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Sep 8, 2023
1 parent 6c83bce commit 35a88da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_randomized_benchmarking.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def test_random_clifford(qubits, seed):
result = result_single if (isinstance(qubits, int) and qubits == 1) else result_two

gates = random_clifford(qubits, seed=seed)
matrix = reduce(np.kron, [gate.matrix for gate in gates])
matrix = reduce(np.kron, [gate.matrix() for gate in gates])
assert np.allclose(matrix, result)


Expand Down

0 comments on commit 35a88da

Please sign in to comment.