File tree Expand file tree Collapse file tree
src/practitest_firecracker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333 (apply format (str base-uri resource-uri-template) params))
3434
3535(defn throw-api-exception [ex-info status body uri]
36- (exit status (group-errors body))
37- (System/exit status))
36+ (exit status (group-errors body)))
3837
3938(defn api-call [{:keys [credentials uri method query-params form-params]}]
4039 (assert (not (and query-params form-params))
Original file line number Diff line number Diff line change 5656 (ex-info " Syntax error: 'drop-last' must have one or two arguments"
5757 {:query query})))
5858 'take-last (case (count args)
59- 1 (take-last 1 (first args))
59+ 1 (take-last 1 (first args))
6060 2 (take-last (first args) (second args))
61- (throw
62- (ex-info " Syntax error: 'take-last' must have one or two arguments"
63- {:query query})))
61+ (throw
62+ (ex-info " Syntax error: 'take-last' must have one or two arguments"
63+ {:query query})))
6464 'concat (apply str args)
6565 'capitalize (if (= 1 (count args))
6666 (map string/capitalize (first args))
You can’t perform that action at this time.
0 commit comments