fix tests

This commit is contained in:
tamo
2021-05-05 18:03:21 +02:00
parent efca63f9ce
commit 24192fc550
6 changed files with 7 additions and 9 deletions

View File

@ -178,8 +178,8 @@ mod test {
self.as_ref().snapshot(uuid, path).await
}
async fn dump(&self, uuid: Uuid, path: PathBuf) -> IndexResult<()> {
self.as_ref().dump(uuid, path).await
async fn dump(&self, uid: String, uuid: Uuid, path: PathBuf) -> IndexResult<()> {
self.as_ref().dump(uid, uuid, path).await
}
async fn get_index_stats(&self, uuid: Uuid) -> IndexResult<IndexStats> {