Skip to content

Commit 516acaa

Browse files
committed
Fix similar typo in example and test
1 parent a9b6411 commit 516acaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dpctl/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def test_order_manager():
161161
try:
162162
q = dpctl.SyclQueue()
163163
except dpctl.SyclQueueCreationError:
164-
pytest.skip("Queue could not created for default-selected device")
164+
pytest.skip("Queue could not be created for default-selected device")
165165
_som = dpctl.utils.SequentialOrderManager
166166
_mngr = _som[q]
167167
assert isinstance(_mngr.num_host_task_events, int)

examples/cython/usm_memory/scripts/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def gen_option_params(
4646
continue
4747

4848
if not queues:
49-
print("No queues could not created, nothing to do.")
49+
print("No queues could be created, nothing to do.")
5050
exit(0)
5151

5252
opt_params_list = []

0 commit comments

Comments
 (0)