Skip to content

Commit

Permalink
fix: Fix typo in --firefox-apk error message (#1194)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar303 committed Jan 8, 2018
1 parent 1f65bad commit 5015fe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extension-runners/firefox-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ export class FirefoxAndroidExtensionRunner {

if (packages.length === 0) {
throw new UsageError(
'No Firefox packages found of the selected Android device');
'No Firefox packages were found on the selected Android device');
}

const pkgsListMsg = (pkgs) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test-extension-runners/test.firefox-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ describe('util/extension-runners/firefox-android', () => {
assert.instanceOf(actualException, UsageError);
assert.match(
actualException && actualException.message,
/No Firefox packages found of the selected Android device/
/No Firefox packages were found on the selected Android device/
);
});
});
Expand Down

0 comments on commit 5015fe4

Please sign in to comment.