Skip to content

Commit

Permalink
rebase fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aabharti-visa committed May 30, 2024
1 parent 406da0c commit c2fe6b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-ingestion/tests/unit/test_kafka_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ def mock_get_latest_version(subject_name: str) -> Optional[RegisteredSchema]:
else:
# Last 2 workunits (schemas) must have schemaMetadata aspect
assert isinstance(mce.proposedSnapshot.aspects[1], SchemaMetadataClass)
schemaMetadataAspect: SchemaMetadataClass = mce.proposedSnapshot.aspects[1]
assert isinstance(schemaMetadataAspect.platformSchema, KafkaSchemaClass)
schemaMetadataAspectObj: SchemaMetadataClass = mce.proposedSnapshot.aspects[1]
assert isinstance(schemaMetadataAspectObj.platformSchema, KafkaSchemaClass)


@pytest.mark.parametrize(
Expand Down

0 comments on commit c2fe6b7

Please sign in to comment.