@@ -159,7 +159,7 @@ func TestAggregatorFlagInvariants(t *testing.T) {
159159 validValues := []bool {false , true , true }
160160
161161 for i , flags := range flagVariants {
162- args := append ([]string {"start" }, flags ... )
162+ args := append ([]string {"start" , "--evnode.da.namespace=ev-namespace" }, flags ... )
163163
164164 executor , sequencer , dac , keyProvider , p2pClient , ds , stopDAHeightTicker := createTestComponents (context .Background (), t )
165165 defer stopDAHeightTicker ()
@@ -209,9 +209,9 @@ func TestDefaultAggregatorValue(t *testing.T) {
209209 // Create a new command without specifying any flags
210210 var args []string
211211 if tc .expected {
212- args = []string {"start" , "--rollkit .node.aggregator" }
212+ args = []string {"start" , "--evnode .node.aggregator" , "--evnode.da.namespace=ev-namespace " }
213213 } else {
214- args = []string {"start" , "--rollkit.node.aggregator=false " }
214+ args = []string {"start" , "--evnode.da.namespace=ev-namespace " }
215215 }
216216
217217 if err := newRunNodeCmd .ParseFlags (args ); err != nil {
@@ -277,6 +277,7 @@ func TestCentralizedAddresses(t *testing.T) {
277277 args := []string {
278278 "start" ,
279279 "--rollkit.da.address=http://central-da:26657" ,
280+ "--rollkit.da.namespace=ev-namespace" ,
280281 }
281282
282283 executor , sequencer , dac , keyProvider , p2pClient , ds , stopDAHeightTicker := createTestComponents (context .Background (), t )
0 commit comments