Skip to content

Commit 1404fcf

Browse files
author
kirill.novinskiy@aspose.com
committed
update dependencies
1 parent f65db05 commit 1404fcf

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "Python 3",
3+
"image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye",
4+
"postCreateCommand": "pip install -r requirements.txt",
5+
"workspaceFolder": "/SDKs/Python",
6+
"workspaceMount": "source=${localWorkspaceFolder},target=/SDKs/Python,type=bind,consistency=cached",
7+
"customizations": {
8+
"vscode": {
9+
"settings": {
10+
"python.testing.unittestEnabled": true
11+
}
12+
}
13+
},
14+
"mounts": [
15+
"source=${localWorkspaceFolder}/../../Settings,target=/Settings,type=bind,consistency=cached"
16+
]
17+
}

test/pdf_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4262,7 +4262,7 @@ def testGetImageExtractAsPng(self):
42624262
self.assertIsInstance(response, str)
42634263

42644264
def testGetImageExtractAsSvg(self):
4265-
name = "Alfa.pdf"
4265+
name = "alfa.pdf"
42664266
self.uploadFile(name)
42674267

42684268
opts = {

0 commit comments

Comments
 (0)