diff options
| author | Lilly Schramm <privat@eps-dev.de> | 2025-06-18 20:30:40 +0200 |
|---|---|---|
| committer | Lilly Schramm <privat@eps-dev.de> | 2025-06-18 20:30:40 +0200 |
| commit | ab5c247f09336b5d60abf1344df7983c818a5e6e (patch) | |
| tree | 321b9871cb3c6efcff5bcfe4626885e2d949a0b2 /packages/backend | |
| parent | refactor(backend): Resolve Nested Conditionals (diff) | |
| download | sharkey-ab5c247f09336b5d60abf1344df7983c818a5e6e.tar.gz sharkey-ab5c247f09336b5d60abf1344df7983c818a5e6e.tar.bz2 sharkey-ab5c247f09336b5d60abf1344df7983c818a5e6e.zip | |
refactor(backend): Remove Useless Variable
Diffstat (limited to 'packages/backend')
| -rw-r--r-- | packages/backend/test/unit/AbuseReportNotificationService.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/backend/test/unit/AbuseReportNotificationService.ts b/packages/backend/test/unit/AbuseReportNotificationService.ts index 19ba238a55..a67cb3664a 100644 --- a/packages/backend/test/unit/AbuseReportNotificationService.ts +++ b/packages/backend/test/unit/AbuseReportNotificationService.ts @@ -57,8 +57,7 @@ describe('AbuseReportNotificationService', () => { // -------------------------------------------------------------------------------------- - const metaInitial = {} as MiMeta; - const meta = { ...metaInitial }; + const meta = {} as MiMeta; function updateMeta(newMeta: Partial<MiMeta>): void { for (const key in meta) { |