Skip to content

Commit

Permalink
Fix test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
wolmir committed May 20, 2022
1 parent 9c83f25 commit 7e7f725
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions extension/src/test/fixtures/plotsDiff/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,23 +548,23 @@ export const getComparisonWebviewMessage = (
{
revision: 'workspace',
displayColor: workspace,
displayNameOrParent: undefined
group: undefined
},
{ revision: 'main', displayColor: main, displayNameOrParent: undefined },
{ revision: 'main', displayColor: main, group: undefined },
{
revision: '4fb124a',
displayColor: _4fb124a,
displayNameOrParent: '[exp-e7a67]'
group: '[exp-e7a67]'
},
{
revision: '42b8736',
displayColor: _42b8735,
displayNameOrParent: '[test-branch]'
group: '[test-branch]'
},
{
revision: '1ba7bcd',
displayColor: _1ba7bcd,
displayNameOrParent: '[exp-83425]'
group: '[exp-83425]'
}
],
sectionName: DEFAULT_SECTION_NAMES[Section.COMPARISON_TABLE],
Expand Down
14 changes: 7 additions & 7 deletions extension/src/test/suite/experiments/model/tree.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,37 +309,37 @@ suite('Experiments Tree Test Suite', () => {
).to.deep.equal([
{
displayColor: colors[0],
displayNameOrParent: undefined,
group: undefined,
revision: 'workspace'
},
{
displayColor: colors[2],
displayNameOrParent: '[exp-e7a67]',
group: '[exp-e7a67]',
revision: '4fb124a'
},
{
displayColor: colors[3],
displayNameOrParent: '[test-branch]',
group: '[test-branch]',
revision: '42b8736'
},
{
displayColor: colors[1],
displayNameOrParent: undefined,
group: '[exp-e7a67]',
revision: 'd1343a8'
},
{
displayColor: colors[4],
displayNameOrParent: undefined,
group: '[exp-e7a67]',
revision: '1ee5f2e'
},
{
displayColor: colors[5],
displayNameOrParent: undefined,
group: '[test-branch]',
revision: '2173124'
},
{
displayColor: colors[6],
displayNameOrParent: undefined,
group: '[test-branch]',
revision: '9523bde'
}
])
Expand Down

0 comments on commit 7e7f725

Please sign in to comment.