Skip to content

Commit da29fb5

Browse files
fix lint
1 parent 56e2c2a commit da29fb5

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

src/test/unittest/configuration/resolvers/attach.unit.test.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -578,28 +578,28 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
578578
{
579579
variablePresentation: {},
580580
variablePresentationSetting: {
581-
"class": "inline"
581+
class: 'inline',
582582
},
583583
expectedResult: {},
584584
},
585585
{
586586
variablePresentation: {
587-
"class": "inline"
587+
class: 'inline',
588588
},
589589
variablePresentationSetting: {
590-
"class": "hide"
590+
class: 'hide',
591591
},
592592
expectedResult: {
593-
"class": "inline"
593+
class: 'inline',
594594
},
595595
},
596596
{
597597
variablePresentation: undefined,
598598
variablePresentationSetting: {
599-
"class": "inline"
599+
class: 'inline',
600600
},
601601
expectedResult: {
602-
"class": "inline"
602+
class: 'inline',
603603
},
604604
},
605605
];
@@ -623,8 +623,9 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
623623
debugOptions,
624624
variablePresentation: testParams.variablePresentation,
625625
});
626-
expect(debugConfig).to.have.property('variablePresentation').that.deep.equals(testParams.expectedResult); // Corrected to use deep.equals
627-
626+
expect(debugConfig)
627+
.to.have.property('variablePresentation')
628+
.that.deep.equals(testParams.expectedResult); // Corrected to use deep.equals
628629
});
629630
});
630631

src/test/unittest/configuration/resolvers/launch.unit.test.ts

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -815,28 +815,28 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
815815
{
816816
variablePresentation: {},
817817
variablePresentationSetting: {
818-
"class": "inline"
818+
class: 'inline',
819819
},
820820
expectedResult: {},
821821
},
822822
{
823823
variablePresentation: {
824-
"class": "inline"
824+
class: 'inline',
825825
},
826826
variablePresentationSetting: {
827-
"class": "hide"
827+
class: 'hide',
828828
},
829829
expectedResult: {
830-
"class": "inline"
830+
class: 'inline',
831831
},
832832
},
833833
{
834834
variablePresentation: undefined,
835835
variablePresentationSetting: {
836-
"class": "inline"
836+
class: 'inline',
837837
},
838838
expectedResult: {
839-
"class": "inline"
839+
class: 'inline',
840840
},
841841
},
842842
];
@@ -854,8 +854,9 @@ getInfoPerOS().forEach(([osName, osType, path]) => {
854854
...launch,
855855
variablePresentation: testParams.variablePresentation,
856856
});
857-
expect(debugConfig).to.have.property('variablePresentation').that.deep.equals(testParams.expectedResult); // Corrected to use deep.equals
858-
857+
expect(debugConfig)
858+
.to.have.property('variablePresentation')
859+
.that.deep.equals(testParams.expectedResult); // Corrected to use deep.equals
859860
});
860861
});
861862

0 commit comments

Comments
 (0)