Skip to content

Commit 92d7c27

Browse files
committed
Fix test fixtures
1 parent ac9c7ef commit 92d7c27

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

extension/src/test/fixtures/plotsDiff/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -548,23 +548,23 @@ export const getComparisonWebviewMessage = (
548548
{
549549
revision: 'workspace',
550550
displayColor: workspace,
551-
displayNameOrParent: undefined
551+
group: undefined
552552
},
553-
{ revision: 'main', displayColor: main, displayNameOrParent: undefined },
553+
{ revision: 'main', displayColor: main, group: undefined },
554554
{
555555
revision: '4fb124a',
556556
displayColor: _4fb124a,
557-
displayNameOrParent: '[exp-e7a67]'
557+
group: '[exp-e7a67]'
558558
},
559559
{
560560
revision: '42b8736',
561561
displayColor: _42b8735,
562-
displayNameOrParent: '[test-branch]'
562+
group: '[test-branch]'
563563
},
564564
{
565565
revision: '1ba7bcd',
566566
displayColor: _1ba7bcd,
567-
displayNameOrParent: '[exp-83425]'
567+
group: '[exp-83425]'
568568
}
569569
],
570570
sectionName: DEFAULT_SECTION_NAMES[Section.COMPARISON_TABLE],

extension/src/test/suite/experiments/model/tree.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -309,37 +309,37 @@ suite('Experiments Tree Test Suite', () => {
309309
).to.deep.equal([
310310
{
311311
displayColor: colors[0],
312-
displayNameOrParent: undefined,
312+
group: undefined,
313313
revision: 'workspace'
314314
},
315315
{
316316
displayColor: colors[2],
317-
displayNameOrParent: '[exp-e7a67]',
317+
group: '[exp-e7a67]',
318318
revision: '4fb124a'
319319
},
320320
{
321321
displayColor: colors[3],
322-
displayNameOrParent: '[test-branch]',
322+
group: '[test-branch]',
323323
revision: '42b8736'
324324
},
325325
{
326326
displayColor: colors[1],
327-
displayNameOrParent: undefined,
327+
group: '[exp-e7a67]',
328328
revision: 'd1343a8'
329329
},
330330
{
331331
displayColor: colors[4],
332-
displayNameOrParent: undefined,
332+
group: '[exp-e7a67]',
333333
revision: '1ee5f2e'
334334
},
335335
{
336336
displayColor: colors[5],
337-
displayNameOrParent: undefined,
337+
group: '[test-branch]',
338338
revision: '2173124'
339339
},
340340
{
341341
displayColor: colors[6],
342-
displayNameOrParent: undefined,
342+
group: '[test-branch]',
343343
revision: '9523bde'
344344
}
345345
])

0 commit comments

Comments
 (0)