Skip to content

Commit f51a240

Browse files
committed
Formatting
1 parent 4366d2a commit f51a240

12 files changed

+14
-14
lines changed

Source/ZoomNet.UnitTests/MockFluentHttpResponse.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public Task<byte[]> AsByteArray()
4949
{
5050
return this.AssertContent().ReadAsByteArrayAsync(
5151
#if NET5_0_OR_GREATER
52-
this.CancellationToken
52+
this.CancellationToken
5353
#endif
5454
);
5555
}
@@ -58,7 +58,7 @@ public Task<string> AsString()
5858
{
5959
return this.AssertContent().ReadAsStringAsync(
6060
#if NET5_0_OR_GREATER
61-
this.CancellationToken
61+
this.CancellationToken
6262
#endif
6363
);
6464
}
@@ -68,7 +68,7 @@ public async Task<Stream> AsStream()
6868
Stream stream = await this.AssertContent()
6969
.ReadAsStreamAsync(
7070
#if NET5_0_OR_GREATER
71-
this.CancellationToken
71+
this.CancellationToken
7272
#endif
7373
)
7474
.ConfigureAwait(false);

Source/ZoomNet.UnitTests/RecordingWebhookParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using System;
21
using Shouldly;
2+
using System;
33
using Xunit;
44
using ZoomNet.Models;
55
using ZoomNet.Models.Webhooks;

Source/ZoomNet.UnitTests/UserTspWebhookParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using System;
21
using Shouldly;
2+
using System;
33
using Xunit;
44
using ZoomNet.Models;
55
using ZoomNet.Models.Webhooks;

Source/ZoomNet.UnitTests/WebhookParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using System;
21
using Shouldly;
2+
using System;
33
using Xunit;
44
using ZoomNet.Models;
55
using ZoomNet.Models.Webhooks;

Source/ZoomNet.UnitTests/WebinarWebhookParserTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using System;
21
using Shouldly;
2+
using System;
33
using Xunit;
44
using ZoomNet.Models;
55
using ZoomNet.Models.Webhooks;

Source/ZoomNet/Json/WebhookEventConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public override Models.Webhooks.Event Read(ref Utf8JsonReader reader, Type typeT
4141
eventType = Models.Webhooks.EventType.Unknown;
4242
}
4343

44-
Models.Webhooks.Event webHookEvent = ParsePayloadToWebhookEvent(rootElement, eventType, options);
44+
var webHookEvent = ParsePayloadToWebhookEvent(rootElement, eventType, options);
4545

4646
webHookEvent.EventType = eventType;
4747
webHookEvent.Timestamp = timestamp;

Source/ZoomNet/Models/CallingPlan.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Text.Json.Serialization;
1+
using System.Text.Json.Serialization;
22

33
namespace ZoomNet.Models;
44

Source/ZoomNet/Models/CallingPlanType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ZoomNet.Models;
1+
namespace ZoomNet.Models;
22

33
/// <summary>
44
/// Represents the type of calling plan.

Source/ZoomNet/Models/EmergencyAddress.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Text.Json.Serialization;
1+
using System.Text.Json.Serialization;
22

33
namespace ZoomNet.Models;
44

Source/ZoomNet/Models/InstantMeeting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ZoomNet.Models
1+
namespace ZoomNet.Models
22
{
33
/// <summary>
44
/// An instant meeting.

0 commit comments

Comments
 (0)