1
0
mirror of synced 2026-01-21 06:08:50 -05:00
Files
airbyte/airbyte-integrations/connectors/source-intercom/unit_tests/conftest.py
Marcos Marx dca2256a7c Bump 2022 license version (#13233)
* Bump year in license short to 2022

* remove protocol from cdk
2022-05-26 15:00:42 -03:00

16 lines
256 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
from pytest import fixture
@fixture(name="config")
def config_fixture():
config = {
"access_token": "TOKEN",
"start_date": "2022-03-20T00:00:00Z",
}
return config