Skip to content

Commit

Permalink
fix: path
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik committed Dec 12, 2023
1 parent 31f362f commit 3acfc28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration_tests/src/testcases/interceptor-authz.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ describe('Interchain interceptor with AuthZ support', () => {
fs.readFileSync(
join(
__dirname,
'../../../artifacts/lido_interchain_interceptor_authz.wasm',
'../../../../artifacts/lido_interchain_interceptor_authz.wasm',
),
),
1.5,
Expand Down
5 changes: 4 additions & 1 deletion integration_tests/src/testcases/interceptor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ describe('Interchain interceptor', () => {
const res = await client.upload(
account.address,
fs.readFileSync(
join(__dirname, '../../../artifacts/lido_interchain_interceptor.wasm'),
join(
__dirname,
'../../../../artifacts/lido_interchain_interceptor.wasm',
),
),
1.5,
);
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/src/testcases/poc-stargate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ describe('POC Stargate', () => {
const res = await client.upload(
account.address,
fs.readFileSync(
join(__dirname, '../../../artifacts/lido_stargate_poc.wasm'),
join(__dirname, '../../../../artifacts/lido_stargate_poc.wasm'),
),
1.5,
);
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/src/testcases/validators-stats.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('Validators stats', () => {
const res = await client.upload(
account.address,
fs.readFileSync(
join(__dirname, '../../../artifacts/lido_validators_stats.wasm'),
join(__dirname, '../../../../artifacts/lido_validators_stats.wasm'),
),
1.5,
);
Expand Down

0 comments on commit 3acfc28

Please sign in to comment.