We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09ff087 commit 6c8d616Copy full SHA for 6c8d616
1 file changed
test/python/visualization/test_gate_map.py
@@ -59,7 +59,7 @@ def test_plot_gate_map(self, backend):
59
with BytesIO() as img_buffer:
60
fig.savefig(img_buffer, format="png")
61
img_buffer.seek(0)
62
- self.assertImagesAreEqual(Image.open(img_buffer), img_ref, 0.05)
+ self.assertImagesAreEqual(Image.open(img_buffer), img_ref, 0.1)
63
plt.close(fig)
64
65
@data(*backends)
@@ -81,7 +81,7 @@ def test_plot_circuit_layout(self, backend):
81
82
83
84
85
86
87
@unittest.skipIf(not optionals.HAS_MATPLOTLIB, "matplotlib not available.")
0 commit comments