From 3155f8a4bb6045406c0241e3aed29c0ff452bde2 Mon Sep 17 00:00:00 2001 From: RobertBasti Date: Fri, 20 Sep 2024 14:29:58 +0200 Subject: [PATCH] test --- Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs | 4 ++-- Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs b/Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs index 1435464c8..9bba2a383 100644 --- a/Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs +++ b/Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs @@ -6,10 +6,10 @@ public record DeleteComponentsJob : IDeleteJob { } public record DeleteObjectsJob : IDeleteJob { } public record DeleteWellboreJob : IDeleteJob { - public bool CascadedDelete { get; init;} + public bool CascadedDelete { get; init; } } public record DeleteWellJob : IDeleteJob { - public bool CascadedDelete { get; init;} + public bool CascadedDelete { get; init; } } } diff --git a/Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs b/Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs index 01c327064..44d53857b 100644 --- a/Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs +++ b/Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs @@ -62,7 +62,7 @@ public void GetKeywords_OptionsInString_MultipleKeywords_ReturnsCorrectValue() [Fact] public void GetKeywords_OptionsInStringAndOtherOptions_ReturnsCorrectValue() { - OptionsIn optionsIn = new(ReturnElements.DataOnly, 50, 100, true, false,"foo=bar;baz=qux"); + OptionsIn optionsIn = new(ReturnElements.DataOnly, 50, 100, true, false, "foo=bar;baz=qux"); Assert.Equal("returnElements=data-only;maxReturnNodes=50;requestLatestValues=100;requestObjectSelectionCapability=true;foo=bar;baz=qux", optionsIn.GetKeywords()); }