Skip to content

Commit fed1a00

Browse files
committed
test
1 parent 73a8793 commit fed1a00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

oneapi-rs/tests/alloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn shared_allocation_host_values() {
1414
let mut buffer = unsafe { queue.alloc_uninit_shared::<u32>(10) };
1515

1616
for (index, value) in buffer.iter_mut().enumerate() {
17-
*value = index as u32;
17+
*value = index as u32;
1818
}
1919

2020
assert_eq!(buffer.as_ref(), &[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);

0 commit comments

Comments
 (0)