Skip to content

Commit 5cf1981

Browse files
committed
modify tests scripts to fix cirque ci
1 parent df97121 commit 5cf1981

File tree

1 file changed

+2
-2
lines changed
  • src/controller/python/test/test_scripts

1 file changed

+2
-2
lines changed

src/controller/python/test/test_scripts/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,15 @@ def run(self):
181181

182182
class BaseTestHelper:
183183
def __init__(self, nodeid: int, paaTrustStorePath: str, testCommissioner: bool = False,
184-
keypair: p256keypair.P256Keypair = None):
184+
keypair: p256keypair.P256Keypair = None, dacRevocationSetPath: str = ''):
185185
chip.native.Init()
186186

187187
self.chipStack = ChipStack('/tmp/repl_storage.json', enableServerInteractions=True)
188188
self.certificateAuthorityManager = chip.CertificateAuthority.CertificateAuthorityManager(chipStack=self.chipStack)
189189
self.certificateAuthority = self.certificateAuthorityManager.NewCertificateAuthority()
190190
self.fabricAdmin = self.certificateAuthority.NewFabricAdmin(vendorId=0xFFF1, fabricId=1)
191191
self.devCtrl = self.fabricAdmin.NewController(
192-
nodeid, paaTrustStorePath, testCommissioner, keypair=keypair)
192+
nodeid, paaTrustStorePath, dacRevocationSetPath, testCommissioner, keypair=keypair)
193193
self.controllerNodeId = nodeid
194194
self.logger = logger
195195
self.paaTrustStorePath = paaTrustStorePath

0 commit comments

Comments
 (0)