Skip to content

Commit a199e2b

Browse files
committed
Pre commit
1 parent 79ad986 commit a199e2b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cuda_bindings/tests/nvml/test_nvlink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_nvlink_get_link_count(all_devices):
1212
for device in all_devices:
1313
fields = nvml.FieldValue(0)
1414
assert len(nvml.device_get_field_values(device, fields)) == 0
15-
15+
1616
assert len(nvml.device_get_field_values(device, [])) == 0
1717

1818
fields = nvml.FieldValue(1)

cuda_core/tests/system/test_system_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def test_field_values():
360360
# TODO: Are there any fields that return double's? It would be good to
361361
# test those.
362362

363-
assert len(device.get_field_values([])) == 0
363+
assert len(device.get_field_values([])) == 0
364364

365365
field_ids = [
366366
system.FieldId.DEV_TOTAL_ENERGY_CONSUMPTION,

0 commit comments

Comments
 (0)