Skip to content

Commit

Permalink
ci: run tests as root
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Lüke committed Nov 7, 2023
1 parent cbaf00e commit 227dc06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wgbind/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ mod tests {
#[test]
fn it_adds_a_device() {
let ctx = setup();
let device = ctx.interfaces.first().unwrap().clone();
let device = ctx.interfaces.clone();
let device = *(device.first().unwrap());
drop(ctx);

let result = addDevice(device);
Expand Down

0 comments on commit 227dc06

Please sign in to comment.