Skip to content

Commit

Permalink
Remove test which is flaky in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadravid committed Feb 23, 2021
1 parent 6a870fe commit a8d5b62
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,18 +250,3 @@ impl Drop for WMIConnection {
}
}
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn it_works() {
let com_con = COMLibrary::new().unwrap();
let wmi_con = WMIConnection::new(com_con.into()).unwrap();

let p_svc = wmi_con.svc();

assert_eq!(p_svc.is_null(), false);
}
}

0 comments on commit a8d5b62

Please sign in to comment.