Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges committed Aug 31, 2022
1 parent aa6d292 commit cb6abec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/ApiService/ApiService/OneFuzzTypes/Requests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Microsoft.OneFuzz.Service;

public record BaseRequest{
public record BaseRequest {
[JsonExtensionData]
public Dictionary<string, JsonElement>? ExtensionData { get; set; }
};
Expand Down Expand Up @@ -165,7 +165,7 @@ public record ProxyGet(
Guid? ScalesetId,
Guid? MachineId,
int? DstPort
): BaseRequest;
) : BaseRequest;

public record ProxyCreate(
Guid ScalesetId,
Expand Down
5 changes: 1 addition & 4 deletions src/ApiService/IntegrationTests/TasksTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System;
using System.Net;
using System.Text.Json;
using System.Text.Json.Nodes;
Expand All @@ -11,7 +9,6 @@
using Xunit;
using Xunit.Abstractions;
using Async = System.Threading.Tasks;
using ScalesetFunction = Microsoft.OneFuzz.Service.Functions.Scaleset;

namespace IntegrationTests.Functions;

Expand Down

0 comments on commit cb6abec

Please sign in to comment.