Skip to content

Commit

Permalink
Fix fixture name
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 5, 2024
1 parent 1d433a0 commit 8350411
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tap_github/tests/test_tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_validate_repo_list_config(repo_list_config):


def run_tap_with_config(
caps,
capsys: pytest.LogCaptureFixture,
config_obj: dict,
skip_stream: str | None,
single_stream: str | None,
Expand Down Expand Up @@ -87,14 +87,14 @@ def run_tap_with_config(
)

# discard previous output to stdout (potentially from other tests)
caps.readouterr()
capsys.readouterr()
with patch(
"singer_sdk.streams.core.Stream._sync_children",
alternative_sync_children,
):
tap2 = TapGitHub(config=config_obj, catalog=catalog.to_dict())
tap2.sync_all()
captured = caps.readouterr()
captured = capsys.readouterr()
return captured.out


Expand Down

0 comments on commit 8350411

Please sign in to comment.