P0.5: Fix test helper to use advanced:: qualified paths
The dev_config() helper referenced CdcConfig/CdcBufferConfig/ SearchUiConfig/RateLimitConfig without the advanced:: module prefix. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
232092ffbb
commit
ef32223ca6
1 changed files with 4 additions and 4 deletions
|
|
@ -405,15 +405,15 @@ mod tests {
|
|||
backend: "sqlite".into(),
|
||||
..Default::default()
|
||||
},
|
||||
cdc: CdcConfig {
|
||||
buffer: CdcBufferConfig {
|
||||
cdc: advanced::CdcConfig {
|
||||
buffer: advanced::CdcBufferConfig {
|
||||
overflow: "drop".into(),
|
||||
..Default::default()
|
||||
},
|
||||
..Default::default()
|
||||
},
|
||||
search_ui: SearchUiConfig {
|
||||
rate_limit: RateLimitConfig {
|
||||
search_ui: advanced::SearchUiConfig {
|
||||
rate_limit: advanced::SearchUiRateLimitConfig {
|
||||
backend: "local".into(),
|
||||
..Default::default()
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue