Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcschier committed Oct 3, 2024
1 parent 1bfdecb commit 2991a56
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ public async Task ConfigureFromServerObjectTest2Async(CancellationToken ct = def
Id = Opc.Ua.ObjectIds.Server.ToString()
}
};
_createCall.Verifiable(Times.Exactly(72));
_createCall.Verifiable(Times.Exactly(73));
var results = await _service(_publishedNodesServices.Object).CreateOrUpdateAsync(entry,
new PublishedNodeExpansionModel
{
Expand All @@ -336,7 +336,7 @@ public async Task ConfigureFromServerObjectTest2Async(CancellationToken ct = def
CreateSingleWriter = false
}, ct).ToListAsync(ct).ConfigureAwait(false);

Assert.Equal(72, results.Count);
Assert.Equal(73, results.Count);
Assert.All(results, r =>
{
Assert.Null(r.ErrorInfo);
Expand Down

0 comments on commit 2991a56

Please sign in to comment.