aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-08-21 14:38:32 -0600
committercrobibero <cody@robibe.ro>2020-08-21 14:38:32 -0600
commit33f6e410ac5e90029ffcc61806a35302874c36c8 (patch)
tree3ac9df91d4f8cae7896a392da8eb876aa0144dba /tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs
parentd9515547799d3832dff2d38d12bd4dda539a4e23 (diff)
parent03c89fa71785cb380c31c9af767caf14731d8e99 (diff)
Merge remote-tracking branch 'upstream/master' into json-nullable-number
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs
index b4e6db8f3..09eb22328 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/Library/IgnorePatternsTests.cs
@@ -30,8 +30,7 @@ namespace Jellyfin.Server.Implementations.Tests.Library
[InlineData("/media/movies/.@__thumb/foo-bar-thumbnail.png", true)]
[InlineData("/media/music/Foo B.A.R./epic.flac", false)]
[InlineData("/media/music/Foo B.A.R", false)]
- // This test is pending an upstream fix: https://github.com/dazinator/DotNet.Glob/issues/78
- // [InlineData("/media/music/Foo B.A.R.", false)]
+ [InlineData("/media/music/Foo B.A.R.", false)]
public void PathIgnored(string path, bool expected)
{
Assert.Equal(expected, IgnorePatterns.ShouldIgnore(path));