summaryrefslogtreecommitdiff
path: root/cli/js/resources_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/resources_test.ts')
-rw-r--r--cli/js/resources_test.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/cli/js/resources_test.ts b/cli/js/resources_test.ts
index 753ef3e17..fd97e121f 100644
--- a/cli/js/resources_test.ts
+++ b/cli/js/resources_test.ts
@@ -39,10 +39,8 @@ testPerm({ read: true }, async function resourcesFile(): Promise<void> {
Object.keys(resourcesAfter).length,
Object.keys(resourcesBefore).length + 1
);
- const newRid = Object.keys(resourcesAfter).find(
- (rid): boolean => {
- return !resourcesBefore.hasOwnProperty(rid);
- }
- );
+ const newRid = Object.keys(resourcesAfter).find((rid): boolean => {
+ return !resourcesBefore.hasOwnProperty(rid);
+ });
assertEquals(resourcesAfter[newRid], "fsFile");
});