mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-13 11:44:57 +00:00
Fixing ambiguous reference
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user