Skip to content

Commit db40c5d

Browse files
committed
style
1 parent 0c7d11a commit db40c5d

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

packages/html-manager/test/src/output_test.ts

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -228,17 +228,13 @@ describe('Output widget', function () {
228228
await manager.display_view(manager.create_view(model), widgetTag);
229229
expect(widgetTag.innerText).to.equal(startingText);
230230

231-
model.set(
232-
'outputs',
233-
[
234-
{
235-
output_type: 'stream',
236-
name: 'stdout',
237-
text: endingText,
238-
},
239-
]
240-
);
231+
model.set('outputs', [
232+
{
233+
output_type: 'stream',
234+
name: 'stdout',
235+
text: endingText,
236+
},
237+
]);
241238
expect(widgetTag.innerText).to.equal(endingText);
242-
243239
});
244240
});

0 commit comments

Comments
 (0)