Skip to content

Commit

Permalink
run format
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloescoder committed May 7, 2024
1 parent b424dd4 commit 435761a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

from typing import Any, Mapping

from airbyte_cdk.models import SyncMode
from airbyte_cdk.sources.streams import Stream

from source_lever_hiring.source import SourceLeverHiring


Expand All @@ -17,7 +17,7 @@ def get_stream_by_name(stream_name: str, config: Mapping[str, Any]) -> Stream:
return matches_by_name[0]


def test_cursor_field(config_pass, users_url, auth_url, auth_token):
def test_cursor_field(config_pass):
stream = get_stream_by_name("opportunities", config_pass)
expected_cursor_field = "updatedAt"
assert stream.cursor_field == expected_cursor_field
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

from typing import Any, Mapping

from airbyte_cdk.sources.streams import Stream
from airbyte_protocol.models import SyncMode
from jsonref import requests

from source_lever_hiring.source import SourceLeverHiring


Expand Down

0 comments on commit 435761a

Please sign in to comment.