diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0ba305d..73b04e2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,14 +4,15 @@ updates: directory: "/" schedule: interval: "daily" + time: "00:00" labels: - "Bot" - "Deps" - - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" + time: "00:00" labels: - "Bot" - "GA" diff --git a/subcryptor/src/test.rs b/subcryptor/src/test.rs index 18cfcd9..7511815 100644 --- a/subcryptor/src/test.rs +++ b/subcryptor/src/test.rs @@ -9,14 +9,14 @@ const PUBLIC_KEY: &[u8] = &[ #[test] fn ss58_address_of_should_work() { assert_eq!( - ss58_address_of(PUBLIC_KEY, "Polkadot",).unwrap(), + ss58_address_of(PUBLIC_KEY, "Polkadot").unwrap(), (0, "156HGo9setPcU2qhFMVWLkcmtCEGySLwNqa3DaEiYSWtte4Y".into()) ); } #[test] fn ss58_address_of_should_fail() { assert_eq!( - ss58_address_of(&[], "invalid network",).unwrap_err().to_string(), + ss58_address_of(&[], "invalid network").unwrap_err().to_string(), "[subcryptor] unsupported network, \"invalid network\"" ); }