Skip to content

Commit b10def7

Browse files
committed
test: Update comments
Signed-off-by: Tomas Kislan <[email protected]>
1 parent ebfbc3f commit b10def7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/platform/notebooks/deepnote/sqlIntegrationEnvironmentVariablesProvider.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
255255

256256
const envVars = await provider.getEnvironmentVariables(uri);
257257

258-
// Should return empty object when integration config is missing
258+
// Should return only dataframe integration when integration config is missing
259259
assert.deepStrictEqual(envVars, EXPECTED_EMPTY_ENV_VARS);
260260
});
261261

@@ -625,7 +625,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
625625
when(mockedVSCodeNamespaces.workspace.notebookDocuments).thenReturn([notebook]);
626626
when(integrationStorage.getIntegrationConfig(integrationId)).thenResolve(config);
627627

628-
// Should return empty object when unsupported auth method is encountered
628+
// Should return only dataframe integration when unsupported auth method is encountered
629629
const envVars = await provider.getEnvironmentVariables(uri);
630630
assert.deepStrictEqual(envVars, EXPECTED_EMPTY_ENV_VARS);
631631
});

0 commit comments

Comments
 (0)