Skip to content
Snippets Groups Projects
Commit 19274a7b authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

chore: typo

parent c7965976
No related branches found
No related tags found
1 merge request!5Resolve "Allow to configure WEBAPP_SESSION_LIFETIME environment variable"
Pipeline #76894 passed
......@@ -57,7 +57,7 @@ describe 'comptoir' do
end
end
context '/etc/comptoir/env.prod.local with custom app_secret' do
context '/etc/comptoir/env.prod.local with custom app_secret' do
let(:params) do
{
app_secret: 'ThisCustomTokenIsNotSoSecret',
......@@ -157,7 +157,7 @@ describe 'comptoir' do
end
end
context '/etc/comptoir/env.prod.local with session lifetime (smaller than default value: 60 seconds)' do
context '/etc/comptoir/env.prod.local with custom session lifetime (smaller than default value: 60 seconds)' do
let(:params) do
{
app_session_lifetime: 60,
......@@ -170,7 +170,7 @@ describe 'comptoir' do
end
end
context '/etc/comptoir/env.prod.local with session lifetime (greater than default value: 30 days)' do
context '/etc/comptoir/env.prod.local with custom session lifetime (greater than default value: 30 days)' do
let(:params) do
{
app_session_lifetime: 60 * 60 * 24 * 30, # 60 seconds * 60 minutes * 24 hours * 30 days = 2 592 000 seconds
......@@ -196,7 +196,7 @@ describe 'comptoir' do
end
end
context '/etc/comptoir/env.prod.local with trusted_hosts' do
context '/etc/comptoir/env.prod.local with custom trusted_hosts' do
let(:params) do
{
trusted_hosts: '^example.org$',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment