Skip to content

Commit 15c60f5

Browse files
Fix unit test after endpoint changes
Signed-off-by: artur-ciocanu <[email protected]>
1 parent 5c11cd2 commit 15c60f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dapr-spring/dapr-spring-boot-autoconfigure/src/test/java/io/dapr/spring/boot/autoconfigure/client/DaprClientPropertiesTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ public void shouldMapDaprClientPropertiesCamelCase() {
111111
).run(context -> {
112112
DaprClientProperties properties = context.getBean(DaprClientProperties.class);
113113
SoftAssertions.assertSoftly(softly -> {
114-
softly.assertThat(properties.getGrpcEndpoint()).isEqualTo("localhost");
115-
softly.assertThat(properties.getHttpEndpoint()).isEqualTo("http://localhost");
114+
softly.assertThat(properties.getGrpcEndpoint()).isEqualTo("localhost:50001");
115+
softly.assertThat(properties.getHttpEndpoint()).isEqualTo("http://localhost:3500");
116116
softly.assertThat(properties.getHttpPort()).isEqualTo(3500);
117117
softly.assertThat(properties.getGrpcPort()).isEqualTo(50001);
118118
});

0 commit comments

Comments
 (0)