Skip to content

Commit

Permalink
chore: Use default encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Jan 2, 2024
1 parent 70d150d commit 6990cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Testcontainers.FirebirdSql/FirebirdSqlBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected override FirebirdSqlBuilder Init()
.WithDatabase(DefaultDatabase)
.WithUsername(DefaultUsername)
.WithPassword(DefaultPassword)
.WithResourceMapping(Encoding.UTF8.GetBytes(TestQueryString), "/home/firebird_check.sql")
.WithResourceMapping(Encoding.Default.GetBytes(TestQueryString), "/home/firebird_check.sql")
.WithWaitStrategy(Wait.ForUnixContainer().UntilContainerIsHealthy());
}

Expand Down

0 comments on commit 6990cb3

Please sign in to comment.