Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
Signed-off-by: Carina Ursu <[email protected]>
  • Loading branch information
ursucarina committed Oct 17, 2024
1 parent 2823361 commit 49ea75f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/oss-console/src/components/Literals/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function processBinary(binary?: Core.IBinary | null) {

return {
tag: `${tag}`,
value: "(binary data now shown)",
value: "(binary data not shown)",
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ const scalarBinaryTestCases: TestCaseList<Core.IBinary> = {
},
WITH_VAL: {
value: { value: new Uint8Array(), tag: 'tag1' },
expected: { result_var: { tag: 'tag1', value: '(binary data now shown)' } },
expected: { result_var: { tag: 'tag1', value: '(binary data not shown)' } },
},
EMPTY_VALUE: {
value: { tag: 'msgpack' },
expected: { result_var: { tag: 'msgpack', value: "(empty)" } },
}
expected: { result_var: { tag: 'msgpack', value: '(empty)' } },
},
};

export default scalarBinaryTestCases;

0 comments on commit 49ea75f

Please sign in to comment.