Skip to content

Commit

Permalink
HARMONY-1894: Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
indiejames committed Sep 26, 2024
1 parent 226827c commit c8c05b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion services/harmony/test/helpers/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const adminUsername = 'adam';

export const expectedJobKeys = [
'username', 'status', 'message', 'progress', 'createdAt', 'updatedAt', 'dataExpiration',
'links', 'request', 'numInputGranules', 'jobID',
'links', 'labels', 'request', 'numInputGranules', 'jobID',
];

const exampleProps = {
Expand Down
12 changes: 6 additions & 6 deletions services/harmony/test/parameters/concatenation.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { expect } from 'chai';
import { getWorkflowStepsByJobId } from '../app/models/workflow-steps';
import db from '../app/util/db';
import { hookRedirect } from './helpers/hooks';
import { hookRangesetRequest } from './helpers/ogc-api-coverages';
import hookServersStartStop from './helpers/servers';
import StubService from './helpers/stub-service';
import { getWorkflowStepsByJobId } from '../../app/models/workflow-steps';
import db from '../../app/util/db';
import { hookRedirect } from '../helpers/hooks';
import { hookRangesetRequest } from '../helpers/ogc-api-coverages';
import hookServersStartStop from '../helpers/servers';
import StubService from '../helpers/stub-service';

describe('testing concatenation', function () {
describe('for a CONCISE workflow', function () {
Expand Down

0 comments on commit c8c05b7

Please sign in to comment.