Skip to content

Commit e48ce4d

Browse files
committed
capitalisation
1 parent f8d269a commit e48ce4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def xp(
149149
try:
150150
device = jax.devices("cuda")[0]
151151
except RuntimeError:
152-
pytest.skip("no cuda device available")
152+
pytest.skip("no CUDA device available")
153153
else:
154154
device = jax.devices("cpu")[0]
155155
jax.config.update("jax_default_device", device)
@@ -158,7 +158,7 @@ def xp(
158158
import torch.cuda
159159

160160
if not torch.cuda.is_available():
161-
pytest.skip("no cuda device available")
161+
pytest.skip("no CUDA device available")
162162
xp.set_default_device("cuda")
163163

164164
elif library == Backend.TORCH: # CPU

0 commit comments

Comments
 (0)