diff --git a/Directory.Packages.props b/Directory.Packages.props
index 5b41155..d918ee2 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -31,7 +31,7 @@
-
+
diff --git a/package-lock.json b/package-lock.json
index ff19cdb..6056043 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,5 +1,5 @@
{
- "name": "cs-infinilore.lucide",
+ "name": "IconLibs",
"lockfileVersion": 3,
"requires": true,
"packages": {
diff --git a/tests/Tests.InfiniLore.Lucide/LucideNamesTests.cs b/tests/Tests.InfiniLore.Lucide/LucideNamesTests.cs
index c61d45d..12c38c2 100644
--- a/tests/Tests.InfiniLore.Lucide/LucideNamesTests.cs
+++ b/tests/Tests.InfiniLore.Lucide/LucideNamesTests.cs
@@ -3,7 +3,6 @@
// ---------------------------------------------------------------------------------------------------------------------
using CodeOfChaos.Extensions;
using InfiniLore.Lucide;
-using System.Collections.Frozen;
using System.Reflection;
namespace Tests.InfiniLore.Lucide;
@@ -50,10 +49,10 @@ public async Task ContainsAllIcons() {
.Select(f => (f.Name, f.GetRawConstantValue() as string))
.ToList();
- FrozenSet iconNames = testConfig.Icons.Value.ToFrozenSet();
+ string[] iconNames = testConfig.Icons.Value.ToArray();
// Act
- await Assert.That(data).HasCount().EqualTo(testConfig.IconAmount);
+ await Assert.That(data).Count().IsEqualTo(testConfig.IconAmount);
await Parallel.ForEachAsync(data, async (tuple, _) => {
await Assert.That(tuple.lucideName).IsNotNullOrWhiteSpace();