Skip to content

Commit d48f9e8

Browse files
author
MarcoFalke
committed
Merge #21124: test: remove unnecessary assignment in bdb
c9095b7 test: remove unnecessary assignment in bdb (Bruno Garcia) Pull request description: This PR removes the unnecessary assignment to page_info['entries'] on line 54 since there is another assignment for it in line 59. I think a lint (#21096) would detect cases like this one. ACKs for top commit: achow101: ACK c9095b7 theStack: Code Review ACK c9095b7 Tree-SHA512: 23377077c015b04361fd416b41bf6806ad0bdd4d264be6760f0fd3bc88d694d2cd52cae250519925c5d3b3c70715772714c3863f8fa181a2eb4883204ccdbf9d
2 parents b847f49 + c9095b7 commit d48f9e8

File tree

1 file changed

+0
-1
lines changed
  • test/functional/test_framework

1 file changed

+0
-1
lines changed

test/functional/test_framework/bdb.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def dump_leaf_page(data):
5151
page_info['pgno'] = pgno
5252
page_info['prev_pgno'] = prev_pgno
5353
page_info['next_pgno'] = next_pgno
54-
page_info['entries'] = entries
5554
page_info['hf_offset'] = hf_offset
5655
page_info['level'] = level
5756
page_info['pg_type'] = pg_type

0 commit comments

Comments
 (0)