Skip to content

Commit 2f8420d

Browse files
fix lint
1 parent 96d12a3 commit 2f8420d

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

src/test/unittest/inlineValue/pythonInlineValueProvider.unit.test.ts

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -300,17 +300,20 @@ suite('Debugging - pythonInlineProvider', () => {
300300
});
301301

302302
test('ProvideInlineValues function should return the vars in the python file with readable class variables', async () => {
303-
customRequestStub.withArgs('variables', sinon.match.any).onFirstCall().resolves({
304-
variables: [
305-
{
306-
name: 'person1',
307-
value: '<__main__.Person object at 0x1085c92b0>',
308-
type: 'Person',
309-
evaluateName: 'person1',
310-
variablesReference: 7,
311-
},
312-
],
313-
});
303+
customRequestStub
304+
.withArgs('variables', sinon.match.any)
305+
.onFirstCall()
306+
.resolves({
307+
variables: [
308+
{
309+
name: 'person1',
310+
value: '<__main__.Person object at 0x1085c92b0>',
311+
type: 'Person',
312+
evaluateName: 'person1',
313+
variablesReference: 7,
314+
},
315+
],
316+
});
314317
customRequestStub.withArgs('variables', sinon.match.any).resolves({
315318
variables: [
316319
{

0 commit comments

Comments
 (0)