Prettier: Upgrade to 2 (#30387)

* Updated package json but not updated source files

* Update eslint plugin

* updated files
This commit is contained in:
Torkel Ödegaard
2021-01-20 07:59:48 +01:00
committed by GitHub
parent f27450ed94
commit 1d689888b0
1069 changed files with 4370 additions and 5260 deletions
+3 -3
View File
@@ -21,7 +21,7 @@ export const setup = () => {
};
};
export default data => {
export default (data) => {
group('auth proxy test', () => {
group('batch proxy requests', () => {
const d = new Date();
@@ -44,7 +44,7 @@ export default data => {
let responses = client.batch(requests);
for (let n = 0; n < batchCount; n++) {
check(responses[n], {
'response status is 200': r => r.status === 200,
'response status is 200': (r) => r.status === 200,
});
}
});
@@ -53,4 +53,4 @@ export default data => {
sleep(5);
};
export const teardown = data => {};
export const teardown = (data) => {};