Skip to content

Commit 3a3ca31

Browse files
Try to failing test.
1 parent 8c6e88d commit 3a3ca31

File tree

3 files changed

+4248
-4
lines changed

3 files changed

+4248
-4
lines changed

jupyter_drives/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _load_credentials(self):
8787

8888
# if not, try to load credentials from AWS CLI
8989
aws_credentials_path = "~/.aws/credentials" #add read me about credentials path in windows: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html
90-
if os.path_exists(aws_credentials_path):
90+
if os.path.exists(aws_credentials_path):
9191
self.access_key_id, self.secret_access_key, self.session_token = self._extract_credentials_from_file(aws_credentials_path)
9292
return
9393

ui-tests/tests/jupyter_drives.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test('should emit an activation console message', async ({ page }) => {
1515

1616
await page.goto();
1717

18-
expect(
19-
logs.filter(s => s === 'JupyterLab extension @jupyter/drives is activated!')
20-
).toHaveLength(1);
18+
expect(logs.filter(s => s === 'AddDrives plugin is activated!')).toHaveLength(
19+
1
20+
);
2121
});

0 commit comments

Comments
 (0)