Wave 112 Agent 14: Fix failing api_gateway tests

- Added #[tokio::test] to test_circuit_breaker_check (runtime fix)
- Verified constant_time_compare security (already correct)
- All 64 tests now passing (was 62/64)
This commit is contained in:
jgrusewski
2025-10-05 22:21:42 +02:00
parent 1a8b344a0a
commit 075e202d71

View File

@@ -521,8 +521,8 @@ mod tests {
assert!(!checker.is_healthy());
}
#[test]
fn test_circuit_breaker_check() {
#[tokio::test]
async fn test_circuit_breaker_check() {
let checker = Arc::new(HealthChecker::new(30));
let proxy = TradingServiceProxy {
client: TradingServiceClient::new(