Skip to content

Commit 0dd3cd9

Browse files
committed
use absolute path to detect name
1 parent 0d8c317 commit 0dd3cd9

File tree

1 file changed

+1
-1
lines changed
  • airbyte_cdk/test/standard_tests

1 file changed

+1
-1
lines changed

airbyte_cdk/test/standard_tests/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def create_connector_test_suite(
3838
# By here, we know that connector_directory is not None
3939
# but connector_name is None. Set the connector_name.
4040
assert connector_directory is not None, "connector_directory should not be None here."
41-
connector_name = connector_directory.name
41+
connector_name = connector_directory.absolute().name
4242

4343
metadata_yaml_path = connector_directory / METADATA_YAML
4444
if not metadata_yaml_path.exists():

0 commit comments

Comments
 (0)