From 16328eeef7c9cd36e425e6695a9940145d908212 Mon Sep 17 00:00:00 2001 From: Radu Marias Date: Sun, 21 Apr 2024 15:28:02 +0300 Subject: [PATCH] rename tests to test --- README.md | 2 +- src/encryptedfs.rs | 2 +- src/encryptedfs/{encryptedfs_tests.rs => encryptedfs_test.rs} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/encryptedfs/{encryptedfs_tests.rs => encryptedfs_test.rs} (100%) diff --git a/README.md b/README.md index c16dac8c..aec5a159 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ An encrypted file system that mounts with FUSE on Linux. It can be used to create encrypted directories. It can then safely backup the encrypted folder on an untrusted server without worrying about the data being exposed.\ -You can also store it in any clound storage like Google Drive, Dropbox, etc. and have it synced across multiple devices. +You can also store it in any cloud storage like Google Drive, Dropbox, etc. and have it synced across multiple devices. \ [![encryptedfs-bin](https://img.shields.io/aur/version/encryptedfs-bin?color=1793d1&label=encryptedfs-bin&logo=arch-linux)](https://aur.archlinux.org/packages/encryptedfs-bin/) diff --git a/src/encryptedfs.rs b/src/encryptedfs.rs index f540e36f..ba0500db 100644 --- a/src/encryptedfs.rs +++ b/src/encryptedfs.rs @@ -18,7 +18,7 @@ use thiserror::Error; use tracing::error; #[cfg(test)] -mod encryptedfs_tests; +mod encryptedfs_test; pub mod encryptedfs; pub(crate) const INODES_DIR: &str = "inodes"; diff --git a/src/encryptedfs/encryptedfs_tests.rs b/src/encryptedfs/encryptedfs_test.rs similarity index 100% rename from src/encryptedfs/encryptedfs_tests.rs rename to src/encryptedfs/encryptedfs_test.rs