Skip to content

Commit

Permalink
Update test expected logs
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Cattermole <[email protected]>
  • Loading branch information
adam-cattermole committed Sep 20, 2024
1 parent a2977fd commit efa4b90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rate_limited.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ fn it_limits() {
.returning(Some(42))
.expect_log(
Some(LogLevel::Debug),
Some("#2 initiated gRPC call (id# 42) to Limitador"),
Some("#2 initiated gRPC call (id# 42)"),
)
.execute_and_expect(ReturnType::Action(Action::Pause))
.unwrap();
Expand Down Expand Up @@ -381,7 +381,7 @@ fn it_passes_additional_headers() {
.returning(Some(42))
.expect_log(
Some(LogLevel::Debug),
Some("#2 initiated gRPC call (id# 42) to Limitador"),
Some("#2 initiated gRPC call (id# 42)"),
)
.execute_and_expect(ReturnType::Action(Action::Pause))
.unwrap();
Expand Down Expand Up @@ -523,7 +523,7 @@ fn it_rate_limits_with_empty_conditions() {
.returning(Some(42))
.expect_log(
Some(LogLevel::Debug),
Some("#2 initiated gRPC call (id# 42) to Limitador"),
Some("#2 initiated gRPC call (id# 42)"),
)
.execute_and_expect(ReturnType::Action(Action::Pause))
.unwrap();
Expand Down

0 comments on commit efa4b90

Please sign in to comment.