From 7bf087ad88be90c07fba4e1e1cfbddce8739d8c3 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 11 Nov 2025 07:34:41 +0100 Subject: [PATCH] Add StorageQuota config to testutil --- codex/testutil.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/codex/testutil.go b/codex/testutil.go index 529899d..fb0471c 100644 --- a/codex/testutil.go +++ b/codex/testutil.go @@ -43,6 +43,10 @@ func newCodexNode(t *testing.T, opts ...Config) *CodexNode { if c.DiscoveryPort != 0 { config.DiscoveryPort = c.DiscoveryPort } + + if c.StorageQuota != 0 { + config.StorageQuota = c.StorageQuota + } } node, err := New(config)