Skip to content

Commit

Permalink
modify tests scripts to fix cirque ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp committed Jan 21, 2025
1 parent df97121 commit 5cf1981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controller/python/test/test_scripts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@ def run(self):

class BaseTestHelper:
def __init__(self, nodeid: int, paaTrustStorePath: str, testCommissioner: bool = False,
keypair: p256keypair.P256Keypair = None):
keypair: p256keypair.P256Keypair = None, dacRevocationSetPath: str = ''):
chip.native.Init()

self.chipStack = ChipStack('/tmp/repl_storage.json', enableServerInteractions=True)
self.certificateAuthorityManager = chip.CertificateAuthority.CertificateAuthorityManager(chipStack=self.chipStack)
self.certificateAuthority = self.certificateAuthorityManager.NewCertificateAuthority()
self.fabricAdmin = self.certificateAuthority.NewFabricAdmin(vendorId=0xFFF1, fabricId=1)
self.devCtrl = self.fabricAdmin.NewController(
nodeid, paaTrustStorePath, testCommissioner, keypair=keypair)
nodeid, paaTrustStorePath, dacRevocationSetPath, testCommissioner, keypair=keypair)
self.controllerNodeId = nodeid
self.logger = logger
self.paaTrustStorePath = paaTrustStorePath
Expand Down

0 comments on commit 5cf1981

Please sign in to comment.