Skip to content

Commit 0e3fd9b

Browse files
committed
test
1 parent 202ba93 commit 0e3fd9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ShowcaseProject/ShowcaseAPI/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.AllowCredentials();
2121
});
2222
});
23-
23+
2424
Env.Load();
2525

2626
// Add services to the container.

ShowcaseProject/ShowcaseApiTesting/GameHubTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public async Task CreateGroup()
2727
_mockClients.Setup(clients => clients.Caller).Returns(_mockClientProxy.Object);
2828

2929

30-
var groupName = "123456";
30+
var groupName = "123456";
3131
var connectionId = "test-connection";
3232
_mockContext.Setup(c => c.ConnectionId).Returns(connectionId);
3333

ShowcaseProject/ShowcaseFrontend/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
builder.Services.AddHttpClient("NoSSL", client =>
99
{
10-
client.BaseAddress = new Uri("http://showcaseapi");
10+
client.BaseAddress = new Uri("http://showcaseapi" );
1111
})
1212
.ConfigurePrimaryHttpMessageHandler(() =>
1313
{

0 commit comments

Comments
 (0)