Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Fix balance checks in integration tests (#165)
- 300_fullchain-reopen.js (#170, #173)
- 000_fullchain-ABILegacy.js (#174, #175)
- 400_contributeAndCallback.js (#176)
- Remove `smock` from unit tests:
- IexecEscrow.v8 (#154, #155)
- IexecPocoDelegate (#149, #151)
Expand Down
7 changes: 0 additions & 7 deletions test/000_fullchain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ describe('Integration tests', function () {
const completedTasks = taskIndex + 1;
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice * completedTasks, // Sponsor
0, // Requester
-schedulerStakePerTask * completedTasks, // Scheduler
Expand Down Expand Up @@ -275,7 +274,6 @@ describe('Integration tests', function () {
const completedTasks = taskIndex + 1;
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice * completedTasks, // Requester
-schedulerStakePerTask * completedTasks, // Scheduler
0, // AppProvider
Expand Down Expand Up @@ -353,7 +351,6 @@ describe('Integration tests', function () {
const completedTasks = taskIndex + 1;
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice * completedTasks, // Sponsor
0, // Requester
-schedulerStakePerTask * completedTasks, // Scheduler
Expand Down Expand Up @@ -433,7 +430,6 @@ describe('Integration tests', function () {
const completedTasks = taskIndex + 1;
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice * completedTasks, // Requester
-schedulerStakePerTask * completedTasks, // Scheduler
0, // AppProvider
Expand Down Expand Up @@ -502,7 +498,6 @@ describe('Integration tests', function () {
);
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-dealPrice, // Requester
-schedulerStakePerTask, // Scheduler
0, // AppProvider
Expand Down Expand Up @@ -584,7 +579,6 @@ describe('Integration tests', function () {
TaskStatusEnum.COMPLETED,
);
const expectedFrozenChanges = [
0,
-taskPrice,
-schedulerStakePerTask,
0,
Expand Down Expand Up @@ -707,7 +701,6 @@ describe('Integration tests', function () {
expect((await iexecPoco.viewTask(taskId)).status).to.equal(TaskStatusEnum.COMPLETED);
// checks on frozen balance changes
const expectedFrozenChanges = [
0,
-dealPrice,
-schedulerStakePerTask,
0,
Expand Down
1 change: 0 additions & 1 deletion test/200_fullchain-bot.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ describe('Integration tests', function () {
const completedTasks = taskIndex + 1;
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice * completedTasks, // Requester
-schedulerStakePerTask * completedTasks, // Scheduler
0, // AppProvider
Expand Down
1 change: 0 additions & 1 deletion test/201_fullchain-multi-orders.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ describe('Integration tests', function () {
);
// Calculate expected frozen changes
const expectedFrozenChanges = [
0, // Proxy
-taskPrice, // Requester
-schedulerStake, // Scheduler
0, // AppProvider
Expand Down
1 change: 0 additions & 1 deletion test/300_fullchain-reopen.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ describe('Integration tests', function () {
);
expect((await iexecPoco.viewTask(taskId)).status).to.equal(TaskStatusEnum.COMPLETED);
const expectedFrozenChanges = [
0,
-taskPrice,
-schedulerStakePerTask,
0,
Expand Down
Loading
Loading