Skip to content

Commit

Permalink
fix: fix list available backends test
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoLiegiBastonLiegi committed Jun 17, 2024
1 parent 3c8cccf commit a579c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def test_construct_backend(backend):
def test_list_available_backends():
tensorflow = False if platform.system() == "Windows" else True
qulacs = (
False if platform.system() == "darwin" and sys.version_info[1] == 9 else True
False if platform.system() == "Darwin" and sys.version_info[1] == 9 else True
)
available_backends = {
"numpy": True,
Expand Down

0 comments on commit a579c1f

Please sign in to comment.