Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix unit test (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt474 committed Jul 6, 2023
1 parent 4af64c2 commit a02dd96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,6 @@ def test_too_many_circuits(self):
with self.assertRaises(IBMBackendValueError) as err:
backend.run(circs)
self.assertIn(
f"Number of circuits {max_circs+1} exceeds backend._max_circuits",
f"Number of circuits, {max_circs+1} exceeds the maximum for this backend, {max_circs}",
str(err.exception),
)

0 comments on commit a02dd96

Please sign in to comment.