Skip to content

Commit d14fb52

Browse files
authored
Fix yield statement in test_get_custody_columns (#3931)
1 parent dbc746f commit d14fb52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/pyspec/eth2spec/test/eip7594/networking/test_get_custody_columns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _run_get_custody_columns(spec, rng, node_id=None, custody_subnet_count=None)
1616

1717
result = spec.get_custody_columns(node_id, custody_subnet_count)
1818
yield 'node_id', 'meta', node_id
19-
yield 'custody_subnet_count', 'meta', custody_subnet_count
19+
yield 'custody_subnet_count', 'meta', int(custody_subnet_count)
2020

2121
assert len(result) == len(set(result))
2222
assert len(result) == (

0 commit comments

Comments
 (0)