Skip to content

Commit

Permalink
Revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
azaidy committed Oct 1, 2024
1 parent f5e5f0b commit 526e9cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions umi/lumi/tests/test_lumi.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import pytest


def test_lumi(lumi_dut, chip_topo, random_seed):
def test_lumi(lumi_dut, chip_topo, random_seed, sb_umi_valid_mode, sb_umi_ready_mode):

np.random.seed(random_seed)

Expand All @@ -21,8 +21,8 @@ def test_lumi(lumi_dut, chip_topo, random_seed):
# launch the simulation
lumi_dut.simulate(
plusargs=[
('valid_mode', 2),
('ready_mode', 2),
('valid_mode', sb_umi_valid_mode),
('ready_mode', sb_umi_ready_mode),
('hostdly', hostdly),
('devdly', devdly)
],
Expand Down
6 changes: 3 additions & 3 deletions umi/lumi/tests/test_lumi_rnd.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import pytest


def test_lumi_rnd(lumi_dut, chip_topo, random_seed):
def test_lumi_rnd(lumi_dut, chip_topo, random_seed, sb_umi_valid_mode, sb_umi_ready_mode):

np.random.seed(random_seed)

Expand All @@ -21,8 +21,8 @@ def test_lumi_rnd(lumi_dut, chip_topo, random_seed):
# launch the simulation
lumi_dut.simulate(
plusargs=[
('valid_mode', 2),
('ready_mode', 2),
('valid_mode', sb_umi_valid_mode),
('ready_mode', sb_umi_ready_mode),
('hostdly', hostdly),
('devdly', devdly)
]
Expand Down

0 comments on commit 526e9cf

Please sign in to comment.