File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
airbyte_cdk/cli/airbyte_cdk Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 63
63
64
64
TEST_FILE_TEMPLATE = '''
65
65
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
66
- """FAST Airbyte Standard Tests for the source_pokeapi_w_components source."""
66
+ """FAST Airbyte Standard Tests for the {connector_name} source."""
67
67
68
68
#from airbyte_cdk.test.standard_tests import {base_class_name}
69
69
from airbyte_cdk.test.standard_tests.util import create_connector_test_suite
78
78
)
79
79
80
80
# class TestSuite({base_class_name}):
81
- # """Test suite for the source_pokeapi_w_components source.
81
+ # """Test suite for the {connector_name} source.
82
82
83
83
# This class inherits from SourceTestSuiteBase and implements all of the tests in the suite.
84
84
@@ -152,7 +152,7 @@ def test(
152
152
153
153
file_text = TEST_FILE_TEMPLATE .format (
154
154
base_class_name = connector_test_suite .__bases__ [0 ].__name__ ,
155
- connector_directory = str ( connector_directory ) ,
155
+ connector_name = connector_name ,
156
156
)
157
157
test_file_path = Path () / ".tmp" / "integration_tests/test_airbyte_standards.py"
158
158
test_file_path = test_file_path .resolve ().absolute ()
You can’t perform that action at this time.
0 commit comments