Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbasti committed Sep 17, 2024
1 parent 8e23ed4 commit 7c58ab2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public async Task SetPrioritizedLocalCurves_ExistingPriority_ReplacesPriority()
var wellUid = "well1";
var wellboreUid = "wellbore2";
var curves = new List<string> { "D", "E", "D" };
var expectedUniqueCurves = new List<string> { "D", "E"};
var expectedUniqueCurves = new List<string> {"D", "E"};
var logCurvePriority = new LogCurvePriority($"{wellUid}-{wellboreUid}")
{
PrioritizedCurves = curves
Expand All @@ -150,7 +150,7 @@ public async Task SetPrioritizedUniversalCurves_ExistingPriority_ReplacesPriorit
{
_repository.Setup(repo => repo.GetDocumentAsync("universal")).ReturnsAsync(_logCurvePriorityUniversal);
var curves = new List<string> { "D", "E", "D" };
var expectedUniqueCurves = new List<string> { "D", "E"};
var expectedUniqueCurves = new List<string> {"D", "E"};
var logCurvePriority = new LogCurvePriority($"universal")
{
PrioritizedCurves = curves
Expand Down

0 comments on commit 7c58ab2

Please sign in to comment.