Skip to content

Commit

Permalink
test: add special case for repo installer integ test for Deadline 10.…
Browse files Browse the repository at this point in the history
…3.1 (#1170)

Signed-off-by: Caden Marofke <[email protected]>
  • Loading branch information
marofke authored Dec 21, 2023
1 parent 3e8764f commit 9b26976
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,13 @@ describe.each(testCases)('Deadline Repository tests (%s)', (_, id) => {
**********************************************************************************************************/
let expectedVersion: string;
switch (deadlineVersion) {
// Special case for Deadline 10.1.18.5 since it appears as 10.1.18.4 due to known issues in Deadline's build pipeline
// Special cases for Deadline version that appear different due to known issues in Deadline's build pipeline
case '10.1.18.5':
expectedVersion = '10.1.18.4';
break;
case '10.3.1.4':
expectedVersion = '10.3.1.3';
break;

default:
expectedVersion = deadlineVersion!;
Expand Down

0 comments on commit 9b26976

Please sign in to comment.