We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e962f commit 708d115Copy full SHA for 708d115
test/puppetlabs/http/client/sync_plaintext_test.clj
@@ -273,7 +273,7 @@
273
(let [client (Sync/createClient (ClientOptions.))]
274
(testing "Set a cookie using Java API"
275
(let [response (.get client (RequestOptions. "http://localhost:10000/cookietest"))]
276
- (is (= "session_id=session-id-hash\nsomeothercookie=somevalue;Path=/;Secure" (.get (.getHeaders response) "set-cookie")))
+ (is (= "session_id=session-id-hash\nsomeothercookie=somevalue; Path=/; Secure" (.get (.getHeaders response) "set-cookie")))
277
(is (= 200 (.getStatus response)))))
278
(testing "Check if cookie still exists"
279
(let [response (.get client (RequestOptions. "http://localhost:10000/cookiecheck"))]
0 commit comments