Skip to content

Commit

Permalink
added missing assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeva committed Jun 12, 2023
1 parent 74cf86a commit 9f3f9d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/router/src/cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ mod cache_tests {
cache.push("key".to_string(), "val".to_string()).await;

cache.remove("key").await;

assert_eq!(cache.get_val::<String>("key"), None);
}

#[tokio::test]
Expand Down

0 comments on commit 9f3f9d6

Please sign in to comment.