Skip to content

Commit

Permalink
Updated unit tests for keep-compiling option.
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsAsplund authored and umarcor committed Apr 23, 2023
1 parent 0f8624d commit 01955d8
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/unit/test_simulator_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,7 @@ def check_output_side_effect(command, env=None): # pylint: disable=missing-docs
with mock.patch("vunit.sim_if.check_output", autospec=True) as check_output:
check_output.side_effect = check_output_side_effect
printer = MockPrinter()
self.assertRaises(
CompileError,
simif.compile_source_files,
project,
printer=printer,
continue_on_error=True,
)
simif.compile_source_files(project, printer=printer, continue_on_error=True)
self.assertEqual(
printer.output,
"""\
Expand Down

0 comments on commit 01955d8

Please sign in to comment.