Skip to content

Commit

Permalink
Fix Migrate Result
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Jun 9, 2024
1 parent bc6db5c commit 22c3f9b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ class ValidatedMigrateResultTest extends munit.FunSuite {
import ValidateOutput.*

test("ValidatedMigrateResult.valid.liftTo[Try] should be Success") {
val migrateResult = new MigrateResult("FLYWAY_VERSION", "DATABASE", "SCHEMA_NAME")
val migrateResult =
new MigrateResult("FLYWAY_VERSION", "DATABASE", "SCHEMA_NAME", "DATABASE_TYPE")
val result = ValidatedMigrateResult.liftTo[Try](ValidatedMigrateResult.valid(migrateResult))

assertEquals(
Expand Down

0 comments on commit 22c3f9b

Please sign in to comment.