Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
natestemen committed Jan 11, 2024
1 parent b757043 commit 88658d5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mitiq/shadows/test/test_classical_postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ def test_get_single_shot_pauli_fidelity():
assert get_single_shot_pauli_fidelity(b_list, u_list) == expected_result
b_list = "01101"
u_list = "XYZYZ"
print(get_single_shot_pauli_fidelity(b_list, u_list))
assert get_single_shot_pauli_fidelity(b_list, u_list) == {
"00000": 1.0,
"10000": 0.0,
Expand Down Expand Up @@ -65,7 +64,6 @@ def test_get_single_shot_pauli_fidelity():
def test_get_single_shot_pauli_fidelity_with_locality():
b_list = "11101"
u_list = "XYZYZ"
print(get_single_shot_pauli_fidelity(b_list, u_list, locality=2))
assert get_single_shot_pauli_fidelity(b_list, u_list, locality=2) == {
"00000": 1.0,
"10000": 0.0,
Expand Down

0 comments on commit 88658d5

Please sign in to comment.