Skip to content

Commit

Permalink
fixup #7747: actually use the fixture for neon_env_builder (#7767)
Browse files Browse the repository at this point in the history
The `= None` makes it not use the fixture.

This slipped due to last-minute changes.
  • Loading branch information
problame authored and a-masterov committed May 20, 2024
1 parent 09e6629 commit 9783e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_runner/fixtures/neon_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -1392,8 +1392,8 @@ def neon_env_builder(
test_overlay_dir: Path,
top_output_dir: Path,
pageserver_virtual_file_io_engine: str,
pageserver_default_tenant_config_compaction_algorithm: Optional[Dict[str, Any]],
pageserver_aux_file_policy: Optional[AuxFileStore] = None,
pageserver_default_tenant_config_compaction_algorithm: Optional[Dict[str, Any]] = None,
) -> Iterator[NeonEnvBuilder]:
"""
Fixture to create a Neon environment for test.
Expand Down

0 comments on commit 9783e0f

Please sign in to comment.