Skip to content

Commit

Permalink
fix ovs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Dec 12, 2024
1 parent 5a34099 commit 4a678c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/end_to_end/http_server/open_value_sharing/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"weights": {
"debug": 2,
"has-symbols": 0,
"safer-buffer": 2,
"safe-buffer": 2,
"hasown": 3
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,9 @@ function pretest(): void {
}
);

execSync(
`cp ../../../../.openvaluesharing.json node_modules/safer-buffer`,
{
stdio: 'inherit'
}
);
execSync(`cp ../../../../.openvaluesharing.json node_modules/safe-buffer`, {
stdio: 'inherit'
});

execSync(`cp ../../../../.openvaluesharing.json node_modules/hasown`, {
stdio: 'inherit'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function periodicBatchIsCorrect(periodicBatch: PeriodicBatch): void {
);
expect(payment4).toStrictEqual(
expect.objectContaining({
name: 'safer-buffer',
name: 'safe-buffer',
payment_mechanism: 'wallet_receive',
amount: payment4CalculatedAmount,
success: { Ok: null }
Expand Down

0 comments on commit 4a678c0

Please sign in to comment.