From deff5e96dbec02ff15b3f0f336e70c23ebfac9ae Mon Sep 17 00:00:00 2001 From: John Knox Date: Thu, 2 May 2019 04:03:44 -0700 Subject: [PATCH] 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 --- src/devices/MacDevice.js | 2 +- src/devices/WindowsDevice.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/MacDevice.js b/src/devices/MacDevice.js index 93f62aefc..ba7e55200 100644 --- a/src/devices/MacDevice.js +++ b/src/devices/MacDevice.js @@ -11,7 +11,7 @@ export default class MacDevice extends BaseDevice { os = 'MacOS'; constructor() { - super('', 'physical', 'desktop'); + super('', 'physical', 'Mac'); } teardown() {} diff --git a/src/devices/WindowsDevice.js b/src/devices/WindowsDevice.js index 954cae5ec..1d9e20507 100644 --- a/src/devices/WindowsDevice.js +++ b/src/devices/WindowsDevice.js @@ -11,7 +11,7 @@ export default class WindowsDevice extends BaseDevice { os = 'Windows'; constructor() { - super('', 'physical', 'desktop'); + super('', 'physical', 'Windows'); } teardown() {}