From 99b2232e4c342f0029f69a3365cf35403a207cc4 Mon Sep 17 00:00:00 2001 From: acalcutt Date: Tue, 23 Apr 2024 14:44:18 -0400 Subject: [PATCH] fix: lint Signed-off-by: acalcutt --- test/style.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/style.js b/test/style.js index b7ff090..469eab7 100644 --- a/test/style.js +++ b/test/style.js @@ -44,7 +44,10 @@ describe('Styles', function () { describe('/styles/' + prefix + '/sprite/default[@2x].{format}', function () { testIs('/styles/' + prefix + '/sprite/default.json', /application\/json/); - testIs('/styles/' + prefix + '/sprite/default@2x.json', /application\/json/); + testIs( + '/styles/' + prefix + '/sprite/default@2x.json', + /application\/json/, + ); testIs('/styles/' + prefix + '/sprite/default.png', /image\/png/); testIs('/styles/' + prefix + '/sprite/default@2x.png', /image\/png/); });