File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Foundation.Data.Doublets.Cli.Tests Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,8 @@ private static void RunTestWithLinks(Action<ILinks<uint>> testAction)
156156 try
157157 {
158158 using var links = new UnitedMemoryLinks < uint > ( tempDbFile ) ;
159- testAction ( links ) ;
159+ var decoratedLinks = links . DecorateWithAutomaticUniquenessAndUsagesResolution ( ) ;
160+ testAction ( decoratedLinks ) ;
160161 }
161162 finally
162163 {
Original file line number Diff line number Diff line change @@ -231,7 +231,8 @@ private static void RunTestWithLinks(Action<ILinks<uint>> testAction)
231231 try
232232 {
233233 using var links = new UnitedMemoryLinks < uint > ( tempDbFile ) ;
234- testAction ( links ) ;
234+ var decoratedLinks = links . DecorateWithAutomaticUniquenessAndUsagesResolution ( ) ;
235+ testAction ( decoratedLinks ) ;
235236 }
236237 finally
237238 {
You can’t perform that action at this time.
0 commit comments