Skip to content

Commit

Permalink
style(tests): format with Prettier
Browse files Browse the repository at this point in the history
freshgum-bubbles committed Oct 23, 2023
1 parent 7edb8e3 commit ef1ac65
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/ContainerRegistry.spec.ts
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ describe('ContainerRegistry', () => {
it('should not allow conflicting string container IDs', () => {
// Make the ContainerInstance constructor public for use below.
class MyContainer extends ContainerInstance {
public constructor (id: ContainerIdentifier) {
public constructor(id: ContainerIdentifier) {
super(id);
}
}
4 changes: 2 additions & 2 deletions test/utils/create-random-name.util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const UID_PREFIX = 'uid-';
let counter = 0;

export function createRandomUid () {
return `${UID_PREFIX}${counter++}`;
export function createRandomUid() {
return `${UID_PREFIX}${counter++}`;
}

0 comments on commit ef1ac65

Please sign in to comment.