Skip to content

Commit edc90da

Browse files
committed
Fix test
1 parent bed6e2a commit edc90da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/converters/visualizationBlockConverter.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ suite('VisualizationBlockConverter', () => {
5959
const cell = converter.convertToCell(block);
6060

6161
assert.strictEqual(cell.kind, NotebookCellKind.Code);
62-
assert.strictEqual(cell.languageId, 'python');
62+
assert.strictEqual(cell.languageId, 'JSON');
6363
assert.include(cell.value, '\n');
6464
assert.match(cell.value, /{\n "variable"/);
6565

0 commit comments

Comments
 (0)