Skip to content

Commit f46ccf1

Browse files
committed
fix tests
1 parent d4c2a92 commit f46ccf1

File tree

1 file changed

+3
-3
lines changed
  • services/static-webserver/client/source/class/osparc/data

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/data/Resources.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,15 +1210,15 @@ qx.Class.define("osparc.data.Resources", {
12101210
},
12111211
getDatasetsPage: {
12121212
method: "GET",
1213-
url: statics.API + "/storage/locations/{locationId}/paths?size=1000&cursor={cursor}"
1213+
url: statics.API + "/storage/locations/{locationId}/paths?cursor={cursor}&size=1000"
12141214
},
12151215
getPaths: {
12161216
method: "GET",
1217-
url: statics.API + "/storage/locations/{locationId}/paths?size=1000&file_filter={path}"
1217+
url: statics.API + "/storage/locations/{locationId}/paths?file_filter={path}&size=1000"
12181218
},
12191219
getPathsPage: {
12201220
method: "GET",
1221-
url: statics.API + "/storage/locations/{locationId}/paths?size=1000&file_filter={path}&cursor={cursor}"
1221+
url: statics.API + "/storage/locations/{locationId}/paths?file_filter={path}&cursor={cursor}&size=1000"
12221222
},
12231223
requestSize: {
12241224
method: "POST",

0 commit comments

Comments
 (0)