Skip to content

Commit ebfbc3f

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

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
@@ -190,7 +190,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
190190

191191
const envVars = await provider.getEnvironmentVariables(uri);
192192

193-
// Should only have one environment variable
193+
// Should only have one environment variable apart from the internal DuckDB integration
194194
assert.property(envVars, 'SQL_MY_POSTGRES_DB');
195195
assert.strictEqual(Object.keys(envVars).length, 2);
196196
});
@@ -234,7 +234,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
234234

235235
const envVars = await provider.getEnvironmentVariables(uri);
236236

237-
// Should have two environment variables
237+
// Should have two environment variables apart from the internal DuckDB integration
238238
assert.property(envVars, 'SQL_MY_POSTGRES_DB');
239239
assert.property(envVars, 'SQL_MY_BIGQUERY');
240240
assert.strictEqual(Object.keys(envVars).length, 3);

0 commit comments

Comments
 (0)