Skip to content

Commit

Permalink
fix: Correct searcher metric order value in experimentList.spec.ts.
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodallacqua-hpe committed Sep 30, 2024
1 parent f3a7c77 commit cae358d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/react/src/e2e/tests/experimentList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,10 @@ test.describe('Experiment List', () => {
});

await sortingScenario('Trial count', '9 → 0', 'Searcher Metric', 'A → Z', async () => {
await checkTableOrder('Trial count', 'Searcher Metric', 'val_loss'); // searcher metric value taken from the file used to create the experiment
await checkTableOrder('Trial count', 'Searcher Metric', 'validation_loss'); // searcher metric value taken from the file used to create the experiment
});
await sortingScenario('Trial count', '0 → 9', 'Searcher Metric', 'A → Z', async () => {
await checkTableOrder('Trial count', 'Searcher Metric', 'validation_loss', true); // searcher metric value taken from the file used to create the experiment
await checkTableOrder('Trial count', 'Searcher Metric', 'val_loss', true); // searcher metric value taken from the file used to create the experiment
});
});

Expand Down

0 comments on commit cae358d

Please sign in to comment.