Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
WarriorsSami committed Jun 21, 2024
1 parent f2a19e3 commit 8fc06bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quetzalcoatl-auth/Domain/Consts/SystemConsts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ namespace Domain.Consts;

public static class SystemConsts
{
public const string TestingEnvironment = "TESTING";
public const string TestingEnvironment = "Testing";
}
2 changes: 2 additions & 0 deletions quetzalcoatl-auth/Tests.Integration/Core/ApiWebFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ protected override void ConfigureWebHost(IWebHostBuilder builder)
{
builder.ConfigureTestServices(services =>
{
Console.WriteLine(_database.GetConnectionString());

services.RemoveDbContext<ApplicationDbContext>();
services.AddDbContext<ApplicationDbContext>(options =>
{
Expand Down
2 changes: 1 addition & 1 deletion quetzalcoatl-auth/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.0",
"version": "7.0.119",
"rollForward": "latestMajor",
"allowPrerelease": true
}
Expand Down

0 comments on commit 8fc06bd

Please sign in to comment.