We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2cf054 commit 372e23fCopy full SHA for 372e23f
src/tests/server_binary.rs
@@ -92,10 +92,7 @@ impl ServerBin {
92
env.remove("DB_MIN_SIZE");
93
// Other configuration variables needed for the application to boot.
94
env.insert("WEB_ALLOWED_ORIGINS".into(), "http://localhost:8888".into());
95
- env.insert(
96
- "SESSION_KEY".into(),
97
- std::iter::repeat('a').take(32).collect(),
98
- );
+ env.insert("SESSION_KEY".into(), "a".repeat(32));
99
env.insert("GH_CLIENT_ID".into(), String::new());
100
env.insert("GH_CLIENT_SECRET".into(), String::new());
101
0 commit comments