Skip to content

Commit

Permalink
fix e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keeramis committed Jan 22, 2025
1 parent b7d1375 commit 2e5c317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/esim.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = class ESimCommands extends CLICommandBase {
this.verbose = true;
const device = await this.serial.whatSerialPortDidYouMean();
if (device.type !== 'Tachyon') {
throw new Error('Enable command is only for Tachyon devices');
throw new Error('This command is only for Tachyon devices');
}
this.isTachyon = true;
return device;
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/help.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('Help & Unknown Command / Argument Handling', () => {
'cloud', 'compile', 'config', 'device add', 'device remove',
'device rename', 'device doctor', 'device',
'device-protection status', 'device-protection disable', 'device-protection enable', 'device-protection',
'doctor', 'esim provision', 'esim', 'flash',
'doctor', 'esim provision', 'esim enable', 'esim delete', 'esim list', 'esim', 'flash',
'function list', 'function call', 'function', 'get', 'identify',
'keys new', 'keys load', 'keys save', 'keys send', 'keys doctor',
'keys server', 'keys address', 'keys', 'library add',
Expand Down

0 comments on commit 2e5c317

Please sign in to comment.