Skip to content

Commit 0567507

Browse files
committed
chore: run prettier
1 parent 621f47d commit 0567507

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/cache.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ function isSameVersion<T extends KubernetesObject>(o1: any, o2: T): boolean {
293293
);
294294
}
295295

296-
297296
// Public for testing.
298297
export function deleteObject<T extends KubernetesObject>(
299298
objects: CacheMap<T>,
@@ -316,4 +315,4 @@ export function deleteObject<T extends KubernetesObject>(
316315
objects.delete(namespace);
317316
}
318317
}
319-
}
318+
}

src/cache_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ describe('delete items', () => {
13731373
const objs: CacheMap<V1Pod> = new Map();
13741374
listA.forEach((elt) => {
13751375
addOrUpdateObject(objs, elt);
1376-
})
1376+
});
13771377

13781378
deleteItems(objs, listB, [(obj?: V1Pod) => pods.push(obj!)]);
13791379
expect(pods).to.deep.equal(expected);

0 commit comments

Comments
 (0)