fix: remove root when accessing fqn of entity reference (#17491)

This commit is contained in:
Teddy 2024-08-20 15:17:16 +02:00 committed by GitHub
parent 9880f06b2c
commit 4ed2035a50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -250,7 +250,7 @@ class OpenMetadataValidationAction(ValidationAction):
if table_entity.testSuite:
test_suite = self.ometa_conn.get_by_name(
TestSuite, table_entity.testSuite.fullyQualifiedName.root
TestSuite, table_entity.testSuite.fullyQualifiedName
)
test_suite = cast(TestSuite, test_suite)
return test_suite