Fix arrays in FileStoreController tests (#13752)

GitOrigin-RevId: 80cde35f11db36dba350eb8023ac3b1d2abb3d2b
This commit is contained in:
Alf Eaton 2023-07-07 07:36:29 +01:00 committed by Copybot
parent 0dc9aa3d21
commit 254422180e

View file

@ -156,10 +156,10 @@ describe('FileStoreController', function () {
})
;[
// None of these should trigger the iOS/html logic
('x.html-is-rad',
'x.html-is-rad',
'html.pdf',
'.html-is-good-for-hidden-files',
'somefile'),
'somefile',
].forEach(filename => {
describe(`with filename as '${filename}'`, function () {
beforeEach(function () {
@ -171,7 +171,7 @@ describe('FileStoreController', function () {
}
}
})
;[('iPhone', 'iPad', 'Firefox', 'Chrome')].forEach(browser => {
;['iPhone', 'iPad', 'Firefox', 'Chrome'].forEach(browser => {
describe(`downloaded from ${browser}`, function () {
beforeEach(function () {
this.user_agent = `Some ${browser} thing`