Skip to content

Commit

Permalink
testers
Browse files Browse the repository at this point in the history
  • Loading branch information
idocyabra committed Apr 25, 2024
1 parent 702a12c commit 05fdcba
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/test_cachelib.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_lifetime(self, app_utils,
"SESSION_CACHELIB": FileSystemCache(
threshold=500, cache_dir=self.session_dir
),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),
}
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_lifetime(self, app_utils,
"SESSION_DYNAMODB": self.client,
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),

}
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_lifetime(self, app_utils,
"SESSION_FILE_DIR": self.session_dir,
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),
}
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_memcached.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_lifetime(self, app_utils,
"SESSION_MEMCACHED": self.mc,
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),
}
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_mongodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def test_lifetime(self, app_utils,
"SESSION_MONGODB": self.client,
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),
}
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_lifetime(self, app_utils,
"SESSION_REDIS": self.r,
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),

}
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_lifetime(self, app_utils,
"SQLALCHEMY_DATABASE_URI": "sqlite:///",
"SESSION_PERMANENT": _session_permanent,
"SESSION_REFRESH_EACH_REQUEST": _session_refresh_each_request,
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=5),
"PERMANENT_SESSION_LIFETIME": timedelta(seconds=4),

}
)
Expand Down

0 comments on commit 05fdcba

Please sign in to comment.