Skip to content

Commit

Permalink
make sure the known processes in test_list_supported_processes are al…
Browse files Browse the repository at this point in the history
…so unique
  • Loading branch information
zcernigoj committed Oct 27, 2023
1 parent d184282 commit 9387ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration_tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@ def test_process_graphs_with_scenes(pg_name, example_input, scenes, expected_out


def test_list_supported_processes():
known_supported_processes = [
known_supported_processes = list(set([
*implicitly_supported_processes,
*get_defined_processes_from_files(),
]
]))
supported_processes = list_supported_processes()
assert len(known_supported_processes) == len(supported_processes)
assert set(known_supported_processes) == set(supported_processes)
Expand Down

0 comments on commit 9387ee8

Please sign in to comment.