Skip to content

Commit

Permalink
Increase test shots (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertMitjans committed Nov 10, 2022
1 parent 75c8001 commit d70daad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# defaults
TOLERANCE = 1e-5
QVM_SHOTS = 10000
QVM_SHOTS = 12000
COMPILER_TIMEOUT = 100
EXECUTION_TIMEOUT = 500

Expand Down Expand Up @@ -177,7 +177,7 @@ def mock_qvm():
mock_qc = get_qc("2q-qvm", as_qvm=True)
mock_qc.compile = MagicMock(return_value=Program())
mock_qc.run = MagicMock(return_value=QAMExecutionResult(executable=Program()))
with patch('pennylane_forest.qvm.get_qc', return_value=mock_qc):
with patch("pennylane_forest.qvm.get_qc", return_value=mock_qc):
yield mock_qc


Expand Down

0 comments on commit d70daad

Please sign in to comment.