Skip to content

Commit e429ea4

Browse files
committed
better name for a constant
1 parent bda391a commit e429ea4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/practitest_firecracker/practitest.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
;; It's a GET request, so if we pass too many test IDs, we get the "URL too long" error
109109
;; 50 sounds like a good compromise.
110110

111-
(def ^:const max-test-ids-bucket 50)
111+
(def ^:const max-test-ids-bucket-size 50)
112112
;; ===========================================================================
113113
;; API
114114

@@ -575,7 +575,7 @@
575575
[project-id display-action-logs]
576576
ts-ids
577577
(string/join "," test-ids-bucket)))
578-
(partition-all max-test-ids-bucket all-test-ids))
578+
(partition-all max-test-ids-bucket-size all-test-ids))
579579
ts-id-instance-num (into {} (map (fn [testset-id-name]
580580
{(first (first testset-id-name))
581581
(into {} (map (fn [test-name]

0 commit comments

Comments
 (0)