Skip to main content

max / makenotwork

test: add missing Config fields to integration test harness Founder-pricing fields (creator_tier_annual_prices, creator_tier_founder_prices, creator_tier_founder_annual_prices, creator_founder_window_open) were added to Config but never threaded through tests/harness/mod.rs, so the integration test binary stopped compiling. Initialize them as empty/false so the harness builds again.
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-05-21 02:21 UTC
Commit: 191275791a0f164f0680ee90b77be818abe492cb
Parent: e9b240e
1 file changed, +4 insertions, -0 deletions
@@ -276,6 +276,10 @@ impl TestHarness {
276 276 mt_base_url: None,
277 277 fan_plus_price_id: None,
278 278 creator_tier_prices: std::collections::HashMap::new(),
279 + creator_tier_annual_prices: std::collections::HashMap::new(),
280 + creator_tier_founder_prices: std::collections::HashMap::new(),
281 + creator_tier_founder_annual_prices: std::collections::HashMap::new(),
282 + creator_founder_window_open: false,
279 283 build_trigger_token: opts.build_trigger_token,
280 284 build_host_linux: None,
281 285 build_host_darwin: None,