Skip to content

Commit 9023282

Browse files
committed
Fixing a typo and a formatting issue
1 parent c552865 commit 9023282

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Unreleased
22

33
- [added] `AppOptions` now supports setting an `HttpClientFactory`, which
4-
is useful when deploying the SDK behinh a proxy server.
4+
is useful when deploying the SDK behind a proxy server.
55

66
# v1.3.0
77

FirebaseAdmin/FirebaseAdmin.Tests/Messaging/FirebaseMessagingTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ public async Task GetMessagingWithClientFactory()
7070
var app = FirebaseApp.Create(new AppOptions()
7171
{
7272
Credential = GoogleCredential.FromAccessToken("test-token"),
73-
HttpClientFactory = factory, ProjectId = "test-project",
73+
HttpClientFactory = factory,
74+
ProjectId = "test-project",
7475
});
7576
FirebaseMessaging messaging = FirebaseMessaging.GetMessaging(app);
7677
Assert.NotNull(messaging);

0 commit comments

Comments
 (0)