Display nicer titles for Mac and Windows Device

Summary: MacDevice and Windows device show uncapitalized 'desktop'. Changing them to Mac and Windows.

Reviewed By: passy

Differential Revision: D15168726

fbshipit-source-id: a69ef572d92f82215e548f71e72ef5d7d48beefa
This commit is contained in:
John Knox
2019-05-02 04:03:44 -07:00
committed by Facebook Github Bot
parent bbee7a3357
commit deff5e96db
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ export default class MacDevice extends BaseDevice {
os = 'MacOS';
constructor() {
super('', 'physical', 'desktop');
super('', 'physical', 'Mac');
}
teardown() {}

View File

@@ -11,7 +11,7 @@ export default class WindowsDevice extends BaseDevice {
os = 'Windows';
constructor() {
super('', 'physical', 'desktop');
super('', 'physical', 'Windows');
}
teardown() {}