Skip to content

Commit a734b46

Browse files
authored
Merge pull request #3402 from demergent-labs/assert_type_path
change the path to assert_type
2 parents af9f64b + 8bdbd73 commit a734b46

File tree

21 files changed

+29
-77
lines changed

21 files changed

+29
-77
lines changed
4.88 KB
Binary file not shown.
1.95 KB
Binary file not shown.

examples/stable/test/property/ic_api/caller/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ import {
1010
StableBTreeMap,
1111
update
1212
} from 'azle';
13-
import {
14-
AssertType,
15-
NotAnyAndExact
16-
} from 'azle/_internal/type_tests/assert_type';
13+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
1714

1815
export default class {
1916
initCaller: Principal | null = null;

examples/stable/test/property/ic_api/candid/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { candidDecode, candidEncode, IDL, query } from 'azle';
2-
import {
3-
AssertType,
4-
NotAnyAndExact
5-
} from 'azle/_internal/type_tests/assert_type';
2+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
63

74
export default class {
85
@query([IDL.Vec(IDL.Nat8)], IDL.Text)

examples/stable/test/property/ic_api/canister_self/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ import {
1010
StableBTreeMap,
1111
update
1212
} from 'azle';
13-
import {
14-
AssertType,
15-
NotAnyAndExact
16-
} from 'azle/_internal/type_tests/assert_type';
13+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
1714

1815
export default class {
1916
initCanisterSelf: Principal | null = null;

examples/stable/test/property/ic_api/canister_version/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ import {
99
StableBTreeMap,
1010
update
1111
} from 'azle';
12-
import {
13-
AssertType,
14-
NotAnyAndExact
15-
} from 'azle/_internal/type_tests/assert_type';
12+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
1613

1714
export default class {
1815
initCanisterVersion: bigint | null = null;

examples/stable/test/property/ic_api/certified_data/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ import {
99
StableBTreeMap,
1010
update
1111
} from 'azle';
12-
import {
13-
AssertType,
14-
NotAnyAndExact
15-
} from 'azle/_internal/type_tests/assert_type';
12+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
1613

1714
const CertifiedData = IDL.Record({
1815
data: IDL.Vec(IDL.Nat8),

examples/stable/test/property/ic_api/cycles/src/cycles/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ import {
55
msgCyclesAvailable,
66
update
77
} from 'azle';
8-
import {
9-
AssertType,
10-
NotAnyAndExact
11-
} from 'azle/_internal/type_tests/assert_type';
8+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
129

1310
import { CyclesResult } from '../types';
1411

examples/stable/test/property/ic_api/cycles/src/intermediary/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@ import {
66
query,
77
update
88
} from 'azle';
9-
import {
10-
AssertType,
11-
NotAnyAndExact
12-
} from 'azle/_internal/type_tests/assert_type';
9+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
1310

1411
import { CyclesResult } from '../types';
1512

examples/stable/test/property/ic_api/cycles_burn/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { canisterCycleBalance, cyclesBurn, IDL, query, update } from 'azle';
2-
import {
3-
AssertType,
4-
NotAnyAndExact
5-
} from 'azle/_internal/type_tests/assert_type';
2+
import { AssertType, NotAnyAndExact } from 'azle/_internal/test/assert_type';
63

74
export default class {
85
@query([], IDL.Nat)

0 commit comments

Comments
 (0)