Skip to content

Commit

Permalink
chore: fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodallacqua-hpe committed Oct 22, 2024
1 parent 58dc601 commit c8fafb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/react/src/e2e/tests/experimentList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ test.describe('Experiment List', () => {
).split(' ')[2],
); // returns in the format "Created experiment <exp_id>"

if (!Number.isNaN(expId)) throw new Error('No experiment ID was found');
if (Number.isNaN(expId)) throw new Error('No experiment ID was found');

experimentId = expId;
},
Expand Down

0 comments on commit c8fafb3

Please sign in to comment.