diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-25 01:27:05 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-09-25 02:16:04 -0400 |
| commit | 452c8d0d9edb9894c108b6d577806c7c9d0071dd (patch) | |
| tree | 1857a7409fe9e5e8c724ff7a04112c57ed3de92c /src/test/fixtures | |
| parent | 697e90f291cec1bbd89965c2731f9481ec4507c4 (diff) | |
Crank up the Clippy warnings.
This'll catch style issues, mostly.
Diffstat (limited to 'src/test/fixtures')
| -rw-r--r-- | src/test/fixtures/login.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fixtures/login.rs b/src/test/fixtures/login.rs index b2a4292..f1e4b15 100644 --- a/src/test/fixtures/login.rs +++ b/src/test/fixtures/login.rs @@ -6,7 +6,7 @@ use crate::{ repo::login::{self, Login}, }; -pub async fn create_for_login(app: &App) -> (String, String) { +pub async fn create_with_password(app: &App) -> (String, String) { let (name, password) = propose(); app.logins() .create(&name, &password) |
