Skip to content

Commit 59f1d45

Browse files
Merge pull request #28 from ThalesGroup/dev-issue25
Tests: General time limit to fix #25
2 parents 04168c3 + b62d26a commit 59f1d45

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/OWS-Tests/OWSServiceWMSTest.class.st

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ OWSServiceWMSTest >> setUp [
1717

1818
super setUp.
1919

20-
wms := OWSServiceWMS new
20+
wms := OWSServiceWMS new.
21+
self timeLimit: 30 seconds. "See issue #25: some servers are long to answer"
2122
]
2223

2324
{ #category : #testsGetCapabilities }
@@ -67,8 +68,6 @@ OWSServiceWMSTest >> testLayers [
6768
OWSServiceWMSTest >> testOneLayer [
6869

6970
| map size |
70-
self timeLimit: 10 seconds.
71-
7271
wms url: 'https://data.geopf.fr/wms-r'.
7372

7473
size := 800 @ 600.
@@ -115,8 +114,6 @@ OWSServiceWMSTest >> testOperations [
115114
OWSServiceWMSTest >> testSeveralLayers [
116115

117116
| map size |
118-
self timeLimit: 10 seconds.
119-
120117
size := 800 @ 600.
121118
wms url: 'https://data.geopf.fr/wms-r'.
122119
map := wms

0 commit comments

Comments
 (0)