Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Jan 29, 2025
1 parent 9b158b4 commit 73735f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Orc.Sort.Tests/Orc.Sort.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageReference Include="ModuleInit.Fody" Version="2.1.1" PrivateAssets="all" />
<PackageReference Include="NUnit" Version="4.3.2" PrivateAssets="all" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" PrivateAssets="all" />
<PackageReference Include="PublicApiGenerator" Version="11.4.0" PrivateAssets="all" />
<PackageReference Include="PublicApiGenerator" Version="11.4.1" PrivateAssets="all" />
<PackageReference Include="Verify.NUnit" Version="28.9.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ namespace Orc.Sort.TopologicalSort
protected System.Collections.Generic.List<System.Collections.Generic.HashSet<int>>? transInto;
public TopologicalSort(Orc.Sort.TopologicalSort.TopologicalSort<T> baseSort, bool? usesPriority = default, bool? usesTracking = default) { }
public TopologicalSort(bool usesPriority = false, bool usesTracking = false, System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<T>>? sequences = null) { }
public System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<T>> Sequences { get; set; }
public bool UsesPriority { get; set; }
public bool UsesTracking { get; set; }
public System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<T>> Sequences { get; protected set; }
public bool UsesPriority { get; protected set; }
public bool UsesTracking { get; protected set; }
public virtual void Add(System.Collections.Generic.IEnumerable<T> sequence) { }
public virtual void AddRange(System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<T>> newSequences) { }
public bool CanSort(System.Collections.Generic.IEnumerable<T> sequence) { }
Expand Down
2 changes: 1 addition & 1 deletion src/Orc.Sort/Orc.Sort.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Catel.Core" Version="6.0.0" />
<PackageReference Include="Catel.Core" Version="6.0.5" />
<PackageReference Include="Catel.Fody" Version="4.9.0" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.9.1" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down

0 comments on commit 73735f5

Please sign in to comment.