@@ -54,9 +54,9 @@ func TestSetDataAvailabilityProtocol(t *testing.T) {
54
54
require .Equal (t , common .HexToAddress (operations .DefaultL1DataCommitteeContract ), currentDAPAddr )
55
55
56
56
// New DAC Setup
57
- newDAAddr , tx , newDA , err := polygondatacommittee .DeployPolygondatacommittee (auth , clientL1 )
57
+ newDAPAddr , tx , newDA , err := polygondatacommittee .DeployPolygondatacommittee (auth , clientL1 )
58
58
require .NoError (t , err )
59
- require .NotEqual (t , newDAAddr , currentDAPAddr )
59
+ require .NotEqual (t , newDAPAddr , currentDAPAddr )
60
60
require .NoError (t , operations .WaitTxToBeMined (ctx , clientL1 , tx , operations .DefaultTimeoutTxToBeMined ))
61
61
62
62
tx , err = newDA .Initialize (auth )
@@ -65,7 +65,7 @@ func TestSetDataAvailabilityProtocol(t *testing.T) {
65
65
66
66
cmd := exec .Command ("docker" , "exec" , "zkevm-sequence-sender" ,
67
67
"/app/zkevm-node" , "set-dap" ,
68
- "--da-addr" , newDAAddr .String (),
68
+ "--da-addr" , newDAPAddr .String (),
69
69
"--network" , "custom" ,
70
70
"--custom-network-file" , "/app/genesis.json" ,
71
71
"--key-store-path" , "/pk/sequencer.keystore" ,
@@ -82,7 +82,7 @@ func TestSetDataAvailabilityProtocol(t *testing.T) {
82
82
83
83
currentDAPAddr , err = zkEVM .DataAvailabilityProtocol (& bind.CallOpts {Pending : false })
84
84
require .NoError (t , err )
85
- require .Equal (t , newDAAddr , currentDAPAddr )
85
+ require .Equal (t , newDAPAddr , currentDAPAddr )
86
86
}
87
87
88
88
func extractHexFromString (output string ) string {
0 commit comments