Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Gusarich committed Feb 12, 2024
1 parent 556b184 commit 305578d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/feature-integer-literals.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toNano } from 'ton-core';
import { toNano } from '@ton/core';
import { ContractSystem } from '@tact-lang/emulator';
import { __DANGER_resetNodeId } from '../grammar/ast';
import { IntegerLiteralsTester } from './features/output/integer-literals_IntegerLiteralsTester';
Expand All @@ -18,7 +18,7 @@ describe('feature-integer-literals', () => {
// Check methods
expect(await contract.getDecLiteral1()).toEqual(123n);
expect(await contract.getDecLiteral2()).toEqual(-123n);
expect(await contract.getDecLiteral3()).toEqual(1012300000n)
expect(await contract.getDecLiteral3()).toEqual(1012300000n);

expect(await contract.getHexLiteral1()).toEqual(0x123n);
expect(await contract.getHexLiteral2()).toEqual(-0x123n);
Expand Down

0 comments on commit 305578d

Please sign in to comment.