aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-12-27 16:53:58 +0100
committerBond_009 <bond.009@outlook.com>2022-12-27 16:53:58 +0100
commit6bf131b2703f83a687faff948467492725e94136 (patch)
tree533e04539399a5cddbe09d577054154b50729530 /tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs
parentf2200c97cbd79e5ff432948ee0fbd1e66ffa4e14 (diff)
Use Diacritics.NET
Last time we had to revert this due to regressions, now those regression tests seem to succeed with a newer version of Diacritics.NET
Diffstat (limited to 'tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs')
-rw-r--r--tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs b/tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs
index 7730841a1..2a7e8fafd 100644
--- a/tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs
+++ b/tests/Jellyfin.Extensions.Tests/AlphanumericComparatorTests.cs
@@ -23,7 +23,7 @@ namespace Jellyfin.Extensions.Tests
{
var copy = strings.Reverse().ToArray();
Array.Sort(copy, new AlphanumericComparator());
- Assert.True(strings.SequenceEqual(copy));
+ Assert.Equal(strings, copy);
}
}
}