Skip to content

Commit 77a90f1

Browse files
committed
restore absolute value in test due to unavailable import (?)
1 parent 7ed538e commit 77a90f1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
CancellationTokenSource,
66
NotebookCell,
77
NotebookCellKind,
8-
NotebookCellStatusBarAlignment,
98
NotebookDocument,
109
TextDocument,
1110
Uri
@@ -84,7 +83,7 @@ suite('SqlCellStatusBarProvider', () => {
8483

8584
assert.isDefined(result);
8685
assert.strictEqual((result as any).text, '$(database) My Postgres DB');
87-
assert.strictEqual((result as any).alignment, NotebookCellStatusBarAlignment.Left);
86+
assert.strictEqual((result as any).alignment, 1); // NotebookCellStatusBarAlignment.Left
8887
assert.isDefined((result as any).command);
8988
assert.strictEqual((result as any).command.command, 'deepnote.manageIntegrations');
9089
assert.deepStrictEqual((result as any).command.arguments, [integrationId]);

0 commit comments

Comments
 (0)