Skip to content

Commit

Permalink
Fix minor issue in json conversion checker
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jun 28, 2024
1 parent 48dff5f commit 3c63047
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/tools/test_all_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ def test(yamlfile_path, cxxfile_path):
datatypes_found = []

with open(cxxfile_path, mode='r', encoding="utf-8") as cxxfile:
for cxxline in cxxfile:
cxxline = cxxfile.readline()
for cxxline in cxxfile.readlines():
result = re.search('insertIntoJson<edm4hep::(.+?)Collection>',
cxxline)
if result:
Expand Down

0 comments on commit 3c63047

Please sign in to comment.