Skip to content

Commit

Permalink
remove unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
drdo committed Jun 25, 2024
1 parent 4ba0705 commit 3eaacd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use rusqlite::Connection;
use scopeguard::defer;
use uuid::Uuid;

use super::{determine_version, get_tables, LATEST_VERSION, MIGRATIONS};
use super::{determine_version, get_tables, LATEST_VERSION};
use crate::cache::{
filetree::{InsertError, SizeTree},
Cache, Migrator, VersionId,
Expand Down Expand Up @@ -383,7 +383,7 @@ fn test_migrate_v0_to_v1() {
let marks = ["/foo", "/bar/wat", "foo/a/b/c", "something"];
let file = populate_v0(marks).unwrap();

let mut cache =
let cache =
Migrator::open_with_target(&file, 1).unwrap().migrate().unwrap();

assert_tables(&cache.conn, &[
Expand Down

0 comments on commit 3eaacd9

Please sign in to comment.