Skip to content

Commit

Permalink
Merge pull request #86 from firedancer-io/topointon/missing-features
Browse files Browse the repository at this point in the history
cope when there are no features
  • Loading branch information
topointon-jump authored Oct 10, 2024
2 parents d92f340 + 20334b2 commit 9b2065a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_suite/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ def regenerate_fixtures(
fixture.ParseFromString(f.read())

features = pb_utils.access_nested_field_safe(fixture.input, features_path)
feature_set = set(features.features)
feature_set = set(features.features) if features else set()

regenerate = True
if not all_fixtures:
Expand Down

0 comments on commit 9b2065a

Please sign in to comment.