We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ebcec commit 3dd32ecCopy full SHA for 3dd32ec
src/storage/s3.rs
@@ -11,9 +11,9 @@ use time::Timespec;
11
use tokio::runtime::Runtime;
12
13
#[cfg(test)]
14
-mod test_s3;
+mod test;
15
16
-pub(crate) use test_s3::TestS3;
+pub(crate) use test::TestS3;
17
18
pub(crate) static S3_BUCKET_NAME: &str = "rust-docs-rs";
19
@@ -132,7 +132,7 @@ pub(crate) fn s3_client() -> Option<S3Client> {
132
}
133
134
135
-pub(crate) mod test {
+pub(crate) mod tests {
136
use super::*;
137
use crate::test::*;
138
use std::slice;
src/storage/s3/test_s3.rs renamed to src/storage/s3/test.rs
0 commit comments