Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2aba2d0

Browse files
committedApr 7, 2025·
Fixed frontend test cases
1 parent ec968d6 commit 2aba2d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎frontend/src/components/Topics/Topic/Messages/MessageContent/__tests__/AvroMetadata.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const setupWrapper = (props?: Partial<AvroMetadataProps>) => {
1515
deserializeProperties={{
1616
type: 'AVRO',
1717
name: 'com.kafbat.MessageType',
18-
schemaId: '1',
18+
schemaId: 1,
1919
}}
2020
{...props}
2121
/>

‎frontend/src/components/Topics/Topic/Messages/MessageContent/__tests__/MessageContent.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const setupWrapper = (props?: Partial<MessageContentProps>) => {
2525
valueDeserializeProperties={{
2626
type: 'AVRO',
2727
name: 'MessageType',
28-
schemaId: '1',
28+
schemaId: 1,
2929
}}
3030
{...props}
3131
/>

0 commit comments

Comments
 (0)
Please sign in to comment.