We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda391a commit e429ea4Copy full SHA for e429ea4
1 file changed
src/practitest_firecracker/practitest.clj
@@ -108,7 +108,7 @@
108
;; It's a GET request, so if we pass too many test IDs, we get the "URL too long" error
109
;; 50 sounds like a good compromise.
110
111
-(def ^:const max-test-ids-bucket 50)
+(def ^:const max-test-ids-bucket-size 50)
112
;; ===========================================================================
113
;; API
114
@@ -575,7 +575,7 @@
575
[project-id display-action-logs]
576
ts-ids
577
(string/join "," test-ids-bucket)))
578
- (partition-all max-test-ids-bucket all-test-ids))
+ (partition-all max-test-ids-bucket-size all-test-ids))
579
ts-id-instance-num (into {} (map (fn [testset-id-name]
580
{(first (first testset-id-name))
581
(into {} (map (fn [test-name]
0 commit comments