Skip to content

Commit 72d43f1

Browse files
committed
fixes
1 parent b3fde9f commit 72d43f1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/usecases/run/GetAllRunsUseCase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ class GetAllRunsUseCase {
458458
attributes: ['runNumber'],
459459
raw: true,
460460
include: {
461-
association: 'lhcPeriods',
461+
association: 'lhcPeriod',
462462
attributes: [],
463463
where: { id: { [Op.in]: lhcPeriodIds } },
464464
},

test/api/qcFlags.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,9 @@ module.exports = () => {
150150
expect(data).to.be.eql({
151151
106: {
152152
1: {
153-
missingVerificationsCount: 1,
153+
missingVerificationsCount: 2,
154154
mcReproducible: false,
155-
badEffectiveRunCoverage: 0.7222222,
155+
badEffectiveRunCoverage: 0.9288889,
156156
explicitlyNotBadEffectiveRunCoverage: 0,
157157
},
158158
},

test/lib/server/services/qualityControlFlag/QcFlagService.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ module.exports = () => {
290290
expect(await qcFlagSummaryService.getSummary({ simulationPassId: 1 })).to.be.eql({
291291
106: {
292292
1: {
293-
missingVerificationsCount: 1,
293+
missingVerificationsCount: 2,
294294
mcReproducible: false,
295-
badEffectiveRunCoverage: 0.7222222,
295+
badEffectiveRunCoverage: 0.9288889,
296296
explicitlyNotBadEffectiveRunCoverage: 0,
297297
},
298298
},

0 commit comments

Comments
 (0)