Skip to content

Commit

Permalink
Up delta tolerance as some tests fail CI (#115)
Browse files Browse the repository at this point in the history
* up the delta tolerance

* up delta tolerance
  • Loading branch information
Jaybsoni committed Nov 10, 2022
1 parent d70daad commit 4cfd836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pyqvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def circuit():
# verify the device is now in the expected state
# Note we have increased the tolerance here, since we are only
# performing 1024 shots.
self.assertAllAlmostEqual(res, expected, delta=3 / np.sqrt(shots))
self.assertAllAlmostEqual(res, expected, delta=4 / np.sqrt(shots))


class TestQVMIntegration(BaseTest):
Expand Down

0 comments on commit 4cfd836

Please sign in to comment.