Skip to content

Commit

Permalink
Fix arg
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Nov 21, 2023
1 parent 9c668d0 commit 728331c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fault/property.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def compile(self, prop):


def _make_statement(statement, prop, on, disable_iff, compile_guard, name):
statement = prepend_when_cond(statement)
prop = prepend_when_cond(prop)

format_args = {}
_compiler = _Compiler(format_args)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

def requires_ncsim(test_fn):
def wrapper(test_fn, *args, **kwargs):
if not shutil.which("ncsim"):
return pytest.skip("need ncsim for SVA test")
# if not shutil.which("ncsim"):
# return pytest.skip("need ncsim for SVA test")
return test_fn(*args, **kwargs)
return decorator.decorator(wrapper, test_fn)

Expand Down

0 comments on commit 728331c

Please sign in to comment.