Skip to content

Commit

Permalink
Code review follow up
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Aug 6, 2024
1 parent 0a9180e commit 56386ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@multiversx/sdk-core",
"version": "13.2.3",
"version": "13.3.0",
"description": "MultiversX SDK for JavaScript and TypeScript",
"main": "out/index.js",
"types": "out/index.d.js",
Expand Down
4 changes: 2 additions & 2 deletions src/smartcontracts/nativeSerializer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ describe("test native serializer", () => {
});
});

it.only("should accept a mixed of values for boolen type", async () => {
it("should accept a mixed of values for boolen type", async () => {
const endpoint = AbiRegistry.create({
endpoints: [
{
Expand Down Expand Up @@ -651,7 +651,7 @@ describe("test native serializer", () => {
}).getEndpoint("foo");

let typedValues = NativeSerializer.nativeToTypedValues(
[true, "true", "TRUE", 1, false, "false", "falseString", 0, 5],
[true, "true", "TRUE", 1, false, "false", "falseBar", 0, 5],
endpoint,
);

Expand Down

0 comments on commit 56386ac

Please sign in to comment.