Skip to content

Commit

Permalink
Fix catalog test extensions order
Browse files Browse the repository at this point in the history
to be consistent with: quarkusio/quarkus#18815
  • Loading branch information
ia3andy committed Jul 21, 2021
1 parent 1ed0793 commit 7e7a4e3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal class QuarkusExtensionUtilsTest {
order = 0,
platform = true))
)
assertThat(extensions[5], `is`(CodeQuarkusExtension(
assertThat(extensions[6], `is`(CodeQuarkusExtension(
id = "io.quarkus:quarkus-rest-client-mutiny",
shortId = "Ph0",
version = "999-SNAPSHOT",
Expand All @@ -73,7 +73,7 @@ internal class QuarkusExtensionUtilsTest {
tags = listOf("preview"),
keywords = listOf("client", "microprofile-rest-client", "mutiny", "quarkus-rest-client-mutiny", "rest", "rest-client", "rest-client-mutiny", "web-client"),
guide = null,
order = 5,
order = 6,
platform = true))
)
}
Expand All @@ -86,7 +86,7 @@ internal class QuarkusExtensionUtilsTest {
"RESTEasy Jackson",
"RESTEasy JSON-B",
"Eclipse Vert.x GraphQL",
"Hibernate Validator"))
"gRPC"))
assertThat(extensions.map { it.name }.subList(extensions.size - 5, extensions.size), contains(
"Quarkus Extension for Spring Scheduled",
"Quarkus Extension for Spring Security API",
Expand Down

0 comments on commit 7e7a4e3

Please sign in to comment.