Skip to content

Commit 0290572

Browse files
authored
fix: Change version assertion from string to number
1 parent 97d188c commit 0290572

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/deepnoteProjectUtils.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ project:
4040

4141
const result = await readDeepnoteProjectFile(testUri);
4242

43-
assert.strictEqual(result.version, '1');
43+
assert.strictEqual(result.version, 1);
4444
assert.strictEqual(result.project.id, 'test-project-id');
4545
assert.strictEqual(result.project.name, 'Test Project');
4646
assert.strictEqual(result.project.notebooks.length, 1);

0 commit comments

Comments
 (0)