summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js')
-rw-r--r--devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js b/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js
index 0c05aa219f..5fa5567e3f 100644
--- a/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js
+++ b/devtools/client/inspector/test/browser_inspector_highlighter-eyedropper-events.js
@@ -60,10 +60,10 @@ const MOVE_EVENTS_DATA = [
// Mouse initialization for right snapping
{
type: "mouse",
- x: (width, height) => width - 5,
+ x: width => width - 5,
y: 0,
expected: {
- x: (width, height) => width - 5,
+ x: width => width - 5,
y: 0,
},
},
@@ -73,7 +73,7 @@ const MOVE_EVENTS_DATA = [
key: "VK_RIGHT",
shift: true,
expected: {
- x: (width, height) => width,
+ x: width => width,
y: 0,
},
desc: "Right snapping to x=max window width available",