Fix integration test missing AlertConfig fields
tests/integration.rs did not compile after mnw_url/alerts_ingest_token
were added to AlertConfig, blocking the whole test suite.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2 files changed,
+2 insertions,
-1 deletion
| 1935 |
1935 |
|
from: "PoM Alerts <pom@test.com>".to_string(),
|
| 1936 |
1936 |
|
cooldown_secs: 300,
|
| 1937 |
1937 |
|
wam_url: None,
|
|
1938 |
+ |
mnw_url: None,
|
|
1939 |
+ |
alerts_ingest_token: None,
|
| 1938 |
1940 |
|
};
|
| 1939 |
1941 |
|
let alerter = pom::alerts::Alerter::new(config, pool.clone(), "test".to_string());
|
| 1940 |
1942 |
|
|
| 2568 |
2568 |
|
dependencies = [
|
| 2569 |
2569 |
|
"ammonia",
|
| 2570 |
2570 |
|
"pulldown-cmark",
|
| 2571 |
|
- |
"regex",
|
| 2572 |
2571 |
|
"regex-lite",
|
| 2573 |
2572 |
|
"serde",
|
| 2574 |
2573 |
|
"toml",
|