Skip to content

Commit 41680b6

Browse files
author
Artur Ciocanu
committed
Fix Dapr Testcontainer Subscription test
Signed-off-by: Artur Ciocanu <[email protected]>
1 parent 5a77ee6 commit 41680b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcontainers-dapr/src/test/java/io/dapr/testcontainers/converter/SubscriptionYamlConverterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ public void testSubscriptionToYaml() {
3030
+ "apiVersion: dapr.io/v1alpha1\n"
3131
+ "kind: Subscription\n"
3232
+ "spec:\n"
33-
+ " route: /events\n"
3433
+ " pubsubname: pubsub\n"
35-
+ " topic: topic\n";
34+
+ " topic: topic\n"
35+
+ " route: /events\n";
3636

3737
assertEquals(expectedSubscriptionYaml, subscriptionYaml);
3838
}

0 commit comments

Comments
 (0)