mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
Fixing ambiguous reference
This commit is contained in:
parent
86617408aa
commit
5b8675025e
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ namespace ICD.Common.Utils.Tests.Extensions
|
|||
[Test]
|
||||
public void ToHashSetTest()
|
||||
{
|
||||
IcdHashSet<int> values = (new[] {1, 2, 3}).ToHashSet();
|
||||
IcdHashSet<int> values = EnumerableExtensions.ToHashSet(new[] {1, 2, 3});
|
||||
|
||||
Assert.AreEqual(3, values.Count);
|
||||
Assert.IsTrue(values.Contains(1));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue