From 7ee09aa0d20ddbfc77c1b07c6fe9be9d3495d293 Mon Sep 17 00:00:00 2001 From: Mark VanLandingham Date: Fri, 10 Jan 2020 09:27:41 -0800 Subject: [PATCH] FIX: Ran prettier on user-selector-test (#8700) --- test/javascripts/components/user-selector-test.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/javascripts/components/user-selector-test.js.es6 b/test/javascripts/components/user-selector-test.js.es6 index 3b9f230ddbb..5ed444429af 100644 --- a/test/javascripts/components/user-selector-test.js.es6 +++ b/test/javascripts/components/user-selector-test.js.es6 @@ -6,7 +6,7 @@ function paste(element, text) { let e = new Event("paste"); e.clipboardData = { getData: () => text }; element.dispatchEvent(e); -}; +} componentTest("pasting a list of usernames", { template: `{{user-selector usernames=usernames class="test-selector"}}`,