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
Carlos Ramos Carreño
erp5
Commits
d07043c7
Commit
d07043c7
authored
Feb 26, 2022
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
bf3e6a53
Changes
1
Show 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 @
d07043c7
...
@@ -1546,7 +1546,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
...
@@ -1546,7 +1546,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
# on REQUEST information when the method was activated.
# on REQUEST information when the method was activated.
request
=
self
.
portal
.
REQUEST
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
.
other
[
'PARENTS'
]
=
[
self
.
portal
.
organisation_module
]
request
.
setVirtualRoot
(
'virtual_root'
)
request
.
setVirtualRoot
(
'virtual_root'
)
...
@@ -1565,7 +1565,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
...
@@ -1565,7 +1565,7 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
# Reset server URL and virtual root before executing messages.
# Reset server URL and virtual root before executing messages.
# This simulates the case of activities beeing executed with different
# This simulates the case of activities beeing executed with different
# REQUEST, such as TimerServer.
# REQUEST, such as TimerServer.
request
.
setServerURL
(
'https'
,
'anotherhost.erp5.org'
,
'443'
)
request
.
setServerURL
(
'https'
,
'anotherhost.erp5.org'
,
443
)
request
.
other
[
'PARENTS'
]
=
[
self
.
app
]
request
.
other
[
'PARENTS'
]
=
[
self
.
app
]
request
.
setVirtualRoot
(
''
)
request
.
setVirtualRoot
(
''
)
# obviously, the object url is different
# obviously, the object url is different
...
...
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