From 12cc0799288a97f333be1ae2d0f93c5b75c69168 Mon Sep 17 00:00:00 2001 From: Nate Malubay Date: Fri, 3 Jan 2020 11:03:38 -0800 Subject: [PATCH] Fixed using statement ordering --- .../BundleExtensionsTests.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.Health.Extensions.Fhir.R4.UnitTests/BundleExtensionsTests.cs b/test/Microsoft.Health.Extensions.Fhir.R4.UnitTests/BundleExtensionsTests.cs index 184a3496..c139c935 100644 --- a/test/Microsoft.Health.Extensions.Fhir.R4.UnitTests/BundleExtensionsTests.cs +++ b/test/Microsoft.Health.Extensions.Fhir.R4.UnitTests/BundleExtensionsTests.cs @@ -3,13 +3,11 @@ // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------------------------------------------- -using System; -using System.Threading.Tasks; -using Xunit; +using System.Collections.Generic; using Hl7.Fhir.Model; using Hl7.Fhir.Rest; -using System.Collections.Generic; using NSubstitute; +using Xunit; namespace Microsoft.Health.Extensions.Fhir.R4.UnitTests {