Skip to content

Commit

Permalink
Fix typo, old filename used in filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
jormundur00 committed Sep 20, 2024
1 parent 5a55859 commit 00b167c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/tests/gh_workflows/NILayerTests/build_layer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def generate_matrix(path_to_data):
'''
with open(os.path.join(path_to_data,'popular-maven-libraries.json'), 'r') as f:
data = json.load(f)
with open(os.path.join(path_to_data, 'exclude-file.json'), 'r') as f:
with open(os.path.join(path_to_data, 'exclude-libraries.json'), 'r') as f:
exclude_data = json.load(f)
matrix = {'coordinates': []}
found_first = False
Expand Down

0 comments on commit 00b167c

Please sign in to comment.