Skip to content

Commit 0465858

Browse files
committed
Fixed linting error
1 parent c96e3ed commit 0465858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/testing/testingStorePayload.processor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class TestingStorePayloadProcessor {
3232
await checkEsIndex(esClient, userConfig.elasticsearch.dataIndices.testingStates, esMapping, esSettings, console.log);
3333

3434
// Transforming the object, objective is just to match to GitHub's to be consistent with the rest of the app
35-
let state: StateNode = {
35+
const state: StateNode = {
3636
...job.data,
3737
full: job.data.name + '_' + job.data.version,
3838
dependencies: {
@@ -65,7 +65,7 @@ export class TestingStorePayloadProcessor {
6565
await checkEsIndex(esClient, userConfig.elasticsearch.dataIndices.testingRuns, esMappingRuns, esSettingsRuns, console.log);
6666

6767
// Transforming the object, objective is just to match to GitHub's to be consistent with the rest of the app
68-
let run: RunNode = {
68+
const run: RunNode = {
6969
...job.data,
7070
id: getRunId(job.data),
7171
full: job.data.name + '_' + job.data.version,

0 commit comments

Comments
 (0)