Skip to content

Commit

Permalink
Rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ohadravid committed Mar 10, 2021
1 parent 9db028e commit a7d27d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/async_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ mod tests {
use futures::stream::StreamExt;

#[async_std::test]
async fn _async_it_works_async() {
async fn async_it_works_async() {
let wmi_con = wmi_con();

let result = wmi_con
Expand All @@ -173,7 +173,7 @@ mod tests {
}

#[async_std::test]
async fn _async_it_handles_invalid_query() {
async fn async_it_handles_invalid_query() {
let wmi_con = wmi_con();

let result = wmi_con
Expand All @@ -182,11 +182,11 @@ mod tests {
.collect::<Vec<_>>()
.await;

assert_eq!(result.len(), 0);
assert_eq!(result.len(), 0);
}

#[async_std::test]
async fn _async_it_provides_raw_query_result() {
async fn async_it_provides_raw_query_result() {
let wmi_con = wmi_con();

let results: Vec<HashMap<String, Variant>> =
Expand Down

0 comments on commit a7d27d3

Please sign in to comment.