Skip to content

Commit

Permalink
Fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Fgerthoffert committed Nov 25, 2024
1 parent c96e3ed commit 0465858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testing/testingStorePayload.processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class TestingStorePayloadProcessor {
await checkEsIndex(esClient, userConfig.elasticsearch.dataIndices.testingStates, esMapping, esSettings, console.log);

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

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

0 comments on commit 0465858

Please sign in to comment.