Skip to content

Commit 44e1382

Browse files
author
Anton Khodak
committed
Exclude 'listing' field from simple checks
1 parent 6049764 commit 44e1382

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltest/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def check_keys(keys, expected, actual):
4646
def compare_file(expected, actual):
4747
# type: (Dict[str,Any], Dict[str,Any]) -> None
4848
compare_location(expected, actual)
49-
other_keys = set(expected.keys()) - {'path', 'location'}
49+
other_keys = set(expected.keys()) - {'path', 'location', 'listing'}
5050
check_keys(other_keys, expected, actual)
5151

5252

0 commit comments

Comments
 (0)