remove redundant {..}

This commit is contained in:
Dustin J. Mitchell
2021-10-01 22:18:24 -04:00
parent a143660124
commit bcef6bf392
18 changed files with 18 additions and 18 deletions

View File

@@ -80,7 +80,7 @@ mod test {
use crate::storage::{InMemoryStorage, Storage};
use crate::Server;
use actix_web::{http::StatusCode, test, App};
use pretty_assertions::{assert_eq};
use pretty_assertions::assert_eq;
use uuid::Uuid;
#[actix_rt::test]

View File

@@ -47,7 +47,7 @@ mod test {
use crate::storage::{InMemoryStorage, Storage};
use crate::Server;
use actix_web::{http::StatusCode, test, App};
use pretty_assertions::{assert_eq};
use pretty_assertions::assert_eq;
use uuid::Uuid;
#[actix_rt::test]

View File

@@ -65,7 +65,7 @@ async fn main() -> anyhow::Result<()> {
mod test {
use super::*;
use actix_web::{test, App};
use pretty_assertions::{assert_eq};
use pretty_assertions::assert_eq;
use taskchampion_sync_server::storage::InMemoryStorage;
#[actix_rt::test]

View File

@@ -81,7 +81,7 @@ pub(crate) fn add_version<'a>(
mod test {
use super::*;
use crate::storage::{InMemoryStorage, Storage};
use pretty_assertions::{assert_eq};
use pretty_assertions::assert_eq;
#[test]
fn gcv_not_found() -> anyhow::Result<()> {

View File

@@ -203,7 +203,7 @@ impl StorageTxn for Txn {
#[cfg(test)]
mod test {
use super::*;
use pretty_assertions::{assert_eq};
use pretty_assertions::assert_eq;
use tempfile::TempDir;
#[test]