diff options
author | jaseg <git@jaseg.de> | 2024-07-18 16:39:58 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2024-07-18 16:39:58 +0200 |
commit | 58d5784903c8381aa63d8c06bd9b251861b27d96 (patch) | |
tree | cc6cc2572deeda9d59f3981e3c157b9b8da97fa1 /gerbonara/tests/test_layers.py | |
parent | 1ecb7be6f9ccabf9ae50af5ad20ce1cc79a01973 (diff) | |
download | gerbonara-58d5784903c8381aa63d8c06bd9b251861b27d96.tar.gz gerbonara-58d5784903c8381aa63d8c06bd9b251861b27d96.tar.bz2 gerbonara-58d5784903c8381aa63d8c06bd9b251861b27d96.zip |
rs274x: Add support for SR step-repeat command
Diffstat (limited to 'gerbonara/tests/test_layers.py')
-rw-r--r-- | gerbonara/tests/test_layers.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gerbonara/tests/test_layers.py b/gerbonara/tests/test_layers.py index 980a303..a5103de 100644 --- a/gerbonara/tests/test_layers.py +++ b/gerbonara/tests/test_layers.py @@ -306,9 +306,8 @@ REFERENCE_DIRS = { } @filter_syntax_warnings -@pytest.mark.parametrize('ref_dir', list(REFERENCE_DIRS.items())) -def test_layer_classifier(ref_dir): - ref_dir, file_map = ref_dir +@pytest.mark.parametrize('ref_dir,file_map', list(REFERENCE_DIRS.items())) +def test_layer_classifier(ref_dir, file_map): path = reference_path(ref_dir) print('Reference path is', path) file_map = { filename: role for filename, role in file_map.items() if role is not None } |