Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Sep 9, 2024
1 parent 33a875d commit 14b2f5f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/smartcontracts/typesystem/types.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ describe("test types", () => {
"multiversx:types:Option<multiversx:types:u32>",
);
assert.equal(new ManagedDecimalType("8").getFullyQualifiedName(), "multiversx:types:ManagedDecimal*8*");
assert.equal(new ManagedDecimalSignedType("8").getFullyQualifiedName(), "multiversx:types:ManagedDecimal*8*");
assert.equal(
new ManagedDecimalSignedType("8").getFullyQualifiedName(),
"multiversx:types:ManagedDecimalSigned*8*",
);
});

it("types and values should have correct JavaScript class hierarchy", () => {
Expand Down

0 comments on commit 14b2f5f

Please sign in to comment.