Skip to content

Commit ffff35e

Browse files
committed
refactor: rename test artifacts folder name for consistency
1 parent 0a4df27 commit ffff35e

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

tests/primitives/biguint.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { biguint } from '@algorandfoundation/algorand-typescript'
55
import { BigUint, Bytes, internal, Uint64 } from '@algorandfoundation/algorand-typescript'
66
import { describe, expect, it } from 'vitest'
77
import { BIGUINT_OVERFLOW_UNDERFLOW_MESSAGE, MAX_UINT512, MAX_UINT64 } from '../../src/constants'
8-
import appSpecJson from '../artifacts/primitives/data/PrimitiveOpsContract.arc32.json'
8+
import appSpecJson from '../artifacts/primitive-ops/data/PrimitiveOpsContract.arc32.json'
99
import { getAlgorandAppClient, getAvmResult, getAvmResultRaw } from '../avm-invoker'
1010
import { abiAsBytes } from '../util'
1111

tests/primitives/bytes.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { bytes, Bytes, internal } from '@algorandfoundation/algorand-typescript'
33
import { describe, expect, it } from 'vitest'
44
import { MAX_BYTES_SIZE } from '../../src/constants'
55
import { sha256 } from '../../src/impl'
6-
import appSpecJson from '../artifacts/primitives/data/PrimitiveOpsContract.arc32.json'
6+
import appSpecJson from '../artifacts/primitive-ops/data/PrimitiveOpsContract.arc32.json'
77
import { getAlgorandAppClient, getAvmResult, getAvmResultRaw } from '../avm-invoker'
88
import { asUint8Array, getSha256Hash, padUint8Array } from '../util'
99

tests/primitives/uint64.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { AppSpec } from '@algorandfoundation/algokit-utils/types/app-spec'
22
import { internal, uint64, Uint64 } from '@algorandfoundation/algorand-typescript'
33
import { describe, expect, it } from 'vitest'
44
import { UINT64_OVERFLOW_UNDERFLOW_MESSAGE } from '../../src/constants'
5-
import appSpecJson from '../artifacts/primitives/data/PrimitiveOpsContract.arc32.json'
5+
import appSpecJson from '../artifacts/primitive-ops/data/PrimitiveOpsContract.arc32.json'
66
import { getAlgorandAppClient, getAvmResult } from '../avm-invoker'
77

88
const MAX_UINT64 = 2n ** 64n - 1n

0 commit comments

Comments
 (0)