Skip to content

Commit

Permalink
Fix yield statement in test_get_custody_columns (#3931)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia authored Sep 19, 2024
1 parent dbc746f commit d14fb52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def _run_get_custody_columns(spec, rng, node_id=None, custody_subnet_count=None)

result = spec.get_custody_columns(node_id, custody_subnet_count)
yield 'node_id', 'meta', node_id
yield 'custody_subnet_count', 'meta', custody_subnet_count
yield 'custody_subnet_count', 'meta', int(custody_subnet_count)

assert len(result) == len(set(result))
assert len(result) == (
Expand Down

0 comments on commit d14fb52

Please sign in to comment.