Skip to content

Commit

Permalink
Generate correct confirm endpoint (#326)
Browse files Browse the repository at this point in the history
Conjure bindings for AutoDeserializeServicecorrectly correctly reflect the the verifier's implementation
  • Loading branch information
ferozco authored Mar 27, 2020
1 parent c263b8f commit e494501
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog/@unreleased/pr-326.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type: fix
fix:
description: Conjure bindings for AutoDeserializeServicecorrectly correctly reflect
the the verifier's implementation
links:
- https://github.com/palantir/conjure-verification/pull/326
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public static void main(String... args) throws IOException {
private static Map<String, Object> generateAutoDeserializeConfirmService(List<BodyTests> body) {
ImmutableMap.Builder<String, Object> endpoints = ImmutableMap.builder();
endpoints.put("confirm", ImmutableMap.builder()
.put("http", "POST /confirm/{endpoint}/{index}")
.put("http", "POST /{endpoint}/{index}")
.put("docs", "Send the response received for positive test cases here to verify that it has been "
+ "serialized and deserialized properly.")
.put("args", ImmutableMap.builder()
Expand Down
1 change: 1 addition & 0 deletions verification-http-client/src/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ fn assume_http2() {
}

#[test]
#[ignore]
fn assume_http2_tls() {
let server = test_tls_server(
1,
Expand Down

0 comments on commit e494501

Please sign in to comment.