Skip to content

Commit

Permalink
correct number of minimum checkers
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Oct 13, 2024
1 parent 75cfe1c commit eebfbbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions verify/uvm-python/test_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(self, name="pwm_test", parent=None):

def end_of_elaboration_phase(self, phase):
super().end_of_elaboration_phase(phase)
self.update_min_checkers(14)
self.update_min_checkers(6)

async def main_phase(self, phase):
uvm_info(self.tag, f"Starting test {self.__class__.__name__}", UVM_LOW)
Expand All @@ -171,7 +171,7 @@ def __init__(self, name="pwm_tmr_test", parent=None):

def end_of_elaboration_phase(self, phase):
super().end_of_elaboration_phase(phase)
self.update_min_checkers(12)
self.update_min_checkers(6)

async def main_phase(self, phase):
uvm_info(self.tag, f"Starting test {self.__class__.__name__}", UVM_LOW)
Expand Down

0 comments on commit eebfbbc

Please sign in to comment.