1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-08-31 19:37:00 +02:00

chore: fix cspell config

This commit is contained in:
Rob Ede
2025-08-26 08:17:17 +01:00
parent b327ec5c71
commit 21a96a0319
16 changed files with 162 additions and 46727 deletions

View File

@@ -1,6 +1,6 @@
use std::time::Duration;
use actix_identity::{config::LogoutBehaviour, IdentityMiddleware};
use actix_identity::{config::LogoutBehavior, IdentityMiddleware};
use reqwest::StatusCode;
use crate::{fixtures::user_id, test_app::TestApp};
@@ -112,7 +112,7 @@ async fn logout_works() {
#[actix_web::test]
async fn logout_can_avoid_destroying_the_whole_session() {
let app = TestApp::spawn_with_config(
IdentityMiddleware::builder().logout_behaviour(LogoutBehaviour::DeleteIdentityKeys),
IdentityMiddleware::builder().logout_behavior(LogoutBehavior::DeleteIdentityKeys),
);
let user_id = user_id();