Skip to content

Commit

Permalink
refactor: cleanup blank lines
Browse files Browse the repository at this point in the history
Signed-off-by: Jérôme Benoit <[email protected]>
  • Loading branch information
jerome-benoit committed Aug 23, 2024
1 parent b78c3f2 commit b1421bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/types/ConfigurationData.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ await describe('ConfigurationData test suite', async () => {
await it('Verify ConfigurationSection enumeration', () => {
expect(ConfigurationSection.log).toBe('log')
expect(ConfigurationSection.performanceStorage).toBe('performanceStorage')
expect(ConfigurationSection.worker).toBe('worker')
expect(ConfigurationSection.uiServer).toBe('uiServer')
expect(ConfigurationSection.worker).toBe('worker')
})

await it('Verify SupervisionUrlDistribution enumeration', () => {
expect(SupervisionUrlDistribution.ROUND_ROBIN).toBe('round-robin')
expect(SupervisionUrlDistribution.RANDOM).toBe('random')
expect(SupervisionUrlDistribution.CHARGING_STATION_AFFINITY).toBe('charging-station-affinity')
expect(SupervisionUrlDistribution.RANDOM).toBe('random')
expect(SupervisionUrlDistribution.ROUND_ROBIN).toBe('round-robin')
})

await it('Verify ApplicationProtocolVersion enumeration', () => {
Expand Down
1 change: 0 additions & 1 deletion ui/web/src/composables/UIClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ interface ResponseHandler {

export class UIClient {
private static instance: null | UIClient = null

private responseHandlers: Map<
`${string}-${string}-${string}-${string}-${string}`,
ResponseHandler
Expand Down

0 comments on commit b1421bc

Please sign in to comment.