Skip to content

Commit

Permalink
fix: and one more
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik committed Dec 12, 2023
1 parent accfa5c commit 32242b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 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: 1 addition & 4 deletions integration_tests/src/testcases/interceptor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,7 @@ 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 32242b6

Please sign in to comment.