Skip to content

Commit

Permalink
test: fix after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Nov 20, 2023
1 parent c953278 commit d548b56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ springwolf.docket.info.contact.email=example@example.com
springwolf.docket.info.contact.url=https://github.com/springwolf/springwolf-core
springwolf.docket.info.license.name=Apache License 2.0
springwolf.docket.servers.jms.protocol=jms
springwolf.docket.servers.jms.url=${spring.activemq.broker-url}
springwolf.docket.servers.jms.url=${spring.artemis.broker-url}
springwolf.use-fqn=true

springwolf.plugin.jms.publishing.enabled=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void testControllerShouldCallKafkaProducerIfOnlyPayloadIsSend() throws Exception
"bindings": null,
"headers": null,
"payload": "{ \\"some-payload-key\\" : \\"some-payload-value\\" }",
"payloadType": "io.github.stavshamir.springwolf.asyncapi.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
"payloadType": "io.github.stavshamir.springwolf.asyncapi.controller.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
}""";

mvc.perform(post("/springwolf/kafka/publish")
Expand All @@ -169,7 +169,7 @@ void testControllerShouldCallKafkaProducerIfPayloadAndHeadersAreSend() throws Ex
"some-header-key": "some-header-value"
},
"payload": "{ \\"some-payload-key\\" : \\"some-payload-value\\" }",
"payloadType": "io.github.stavshamir.springwolf.asyncapi.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
"payloadType": "io.github.stavshamir.springwolf.asyncapi.controller.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
}
""";

Expand Down Expand Up @@ -199,7 +199,7 @@ void testControllerShouldCallKafkaProducerIfPayloadAndHeadersAndBindingsAreSend(
"some-header-key": "some-header-value"
},
"payload": "{ \\"some-payload-key\\" : \\"some-payload-value\\" }",
"payloadType": "io.github.stavshamir.springwolf.asyncapi.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
"payloadType": "io.github.stavshamir.springwolf.asyncapi.controller.SpringwolfKafkaControllerIntegrationTest$PayloadDto"
}""";

mvc.perform(post("/springwolf/kafka/publish?topic=test-topic")
Expand Down

0 comments on commit d548b56

Please # to comment.