Skip to content

Commit 03784a0

Browse files
committed
Remove debug print statements
1 parent 7c3c564 commit 03784a0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/python/test_example_cnot_const_init_ctrl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pytest
33
import numpy as np
44
from quandary import Quandary
5-
from utils import assert_results_equal, print_expected_values
5+
from utils import assert_results_equal
66

77
# Mark all tests in this file as regression tests
88
pytestmark = pytest.mark.regression
@@ -118,7 +118,6 @@
118118
def test_example_cnot_const_init_ctrl(mpi_exec, tmp_path, request):
119119
"""Test CNOT gate optimization using Python interface."""
120120
datadir_path = os.path.join(tmp_path, request.node.name)
121-
print(f"datadir is {datadir_path}")
122121

123122
freq01 = [4.80595, 4.8601]
124123
favg = sum(freq01)/len(freq01)
@@ -150,7 +149,6 @@ def test_example_cnot_const_init_ctrl(mpi_exec, tmp_path, request):
150149
datadir=datadir_path,
151150
)
152151

153-
print_expected_values(infidelity, pt, qt, energy, population, SAMPLE_INDICES, n_osc)
154152
assert_results_equal(
155153
t=t,
156154
pt=pt,

0 commit comments

Comments
 (0)