Skip to content

Commit 1b06324

Browse files
committedMay 29, 2016
Fix failing server label test
1 parent 5b6f9d8 commit 1b06324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tests/src/python/test_qgspallabeling_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def get_request_params(self):
115115
# TODO: support other types of servers, besides WMS
116116
ms = self._TestMapSettings
117117
osize = ms.outputSize()
118-
dpi = str(ms.outputDpi())
118+
dpi = str(int(ms.outputDpi()))
119119
lyrs = [str(self._MapRegistry.mapLayer(i).name()) for i in ms.layers()]
120120
lyrs.reverse()
121121
params = {

0 commit comments

Comments
 (0)
Please sign in to comment.