Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbasti committed Sep 20, 2024
1 parent ad8c313 commit 3155f8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Src/WitsmlExplorer.Api/Jobs/DeleteJobs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ public record DeleteComponentsJob : IDeleteJob<ComponentReferences> { }
public record DeleteObjectsJob : IDeleteJob<ObjectReferences> { }
public record DeleteWellboreJob : IDeleteJob<WellboreReference>
{
public bool CascadedDelete { get; init;}
public bool CascadedDelete { get; init; }
}
public record DeleteWellJob : IDeleteJob<WellReference>
{
public bool CascadedDelete { get; init;}
public bool CascadedDelete { get; init; }
}
}
2 changes: 1 addition & 1 deletion Tests/Witsml.Tests/ServiceReference/OptionsInTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

Expand Down

0 comments on commit 3155f8a

Please sign in to comment.