Skip to content

Commit

Permalink
refactor(:sql): disable :sql project
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed Aug 5, 2024
1 parent 3d18f40 commit 623e135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
val projectName = "qwe"
val profile: String by settings
val pools = mutableMapOf(
projectName to arrayOf(":core", ":ext"),
projectName to arrayOf(":core"),
"http" to arrayOf("http:shared", "http:client", "http:server", "http:openapi"),
"sql" to arrayOf("sql" /*"sql:api", "sql:type"*/),
"sql" to arrayOf(/*"sql", "sql:api", "sql:type"*/),
"micro" to arrayOf(
":micro:config",
":micro:metadata",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void unable_connect(Vertx vertx, VertxTestContext testContext) {
new SQLPluginProvider(PgEntityHandler.class),
t -> testContext.verify(() -> {
t.printStackTrace();
Assertions.assertTrue(t instanceof RuntimeException);
Assertions.assertInstanceOf(RuntimeException.class, t);
Assertions.assertNotNull(t.getCause());
Assertions.assertEquals(
"Connection refused: localhost/127.0.0.1:5433",
Expand Down

0 comments on commit 623e135

Please sign in to comment.