Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Paul Graydon
erp5
Commits
19cb80e6
Commit
19cb80e6
authored
2 years ago
by
Arnaud Fontaine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zope4: HTTPRequest.setServerURL() port argument is now a `int` and not a string...
parent
0b7c97ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/CMFActivity/tests/testCMFActivity.py
product/CMFActivity/tests/testCMFActivity.py
+2
-2
No files found.
product/CMFActivity/tests/testCMFActivity.py
View file @
19cb80e6
...
...
@@ -1540,7 +1540,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
# on REQUEST information when the method was activated.
request
=
self
.
portal
.
REQUEST
request
.
setServerURL
(
'http'
,
'test.erp5.org'
,
'9080'
)
request
.
setServerURL
(
'http'
,
'test.erp5.org'
,
9080
)
request
.
other
[
'PARENTS'
]
=
[
self
.
portal
.
organisation_module
]
request
.
setVirtualRoot
(
'virtual_root'
)
...
...
@@ -1559,7 +1559,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
# Reset server URL and virtual root before executing messages.
# This simulates the case of activities beeing executed with different
# REQUEST, such as TimerServer.
request
.
setServerURL
(
'https'
,
'anotherhost.erp5.org'
,
'443'
)
request
.
setServerURL
(
'https'
,
'anotherhost.erp5.org'
,
443
)
request
.
other
[
'PARENTS'
]
=
[
self
.
app
]
request
.
setVirtualRoot
(
''
)
# obviously, the object url is different
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment