1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 02:19:22 +02:00
This commit is contained in:
Rob Ede
2023-01-07 01:04:16 +00:00
parent 6848312467
commit 779860b664
13 changed files with 27 additions and 29 deletions

View File

@ -21,7 +21,7 @@ async fn test_limiter_count() -> Result<(), Error> {
for i in 0..20 {
let status = limiter.count(id.to_string()).await?;
println!("status: {:?}", status);
println!("status: {status:?}");
assert_eq!(20 - status.remaining(), i + 1);
}