1
0
mirror of synced 2026-01-30 16:01:55 -05:00
Files
airbyte/airbyte-integrations/connectors/source-posthog/unit_tests/unit_test.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

14 lines
339 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
from airbyte_cdk.logger import AirbyteLogger
from source_posthog import SourcePosthog
def test_client_wrong_credentials():
source = SourcePosthog()
status, error = source.check_connection(logger=AirbyteLogger(), config={"api_key": "blahblah"})
assert not status