aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Dlna.Tests/DlnaManagerTests.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Jellyfin.Dlna.Tests/DlnaManagerTests.cs b/tests/Jellyfin.Dlna.Tests/DlnaManagerTests.cs
index 087d43a77..668bd8f87 100644
--- a/tests/Jellyfin.Dlna.Tests/DlnaManagerTests.cs
+++ b/tests/Jellyfin.Dlna.Tests/DlnaManagerTests.cs
@@ -57,8 +57,6 @@ namespace Jellyfin.Dlna.Tests
}
};
- Assert.True(GetManager().IsMatch(device.ToDeviceIdentification(), profile.Identification));
-
var profile2 = new DeviceProfile()
{
Name = "Test Profile",
@@ -70,7 +68,10 @@ namespace Jellyfin.Dlna.Tests
};
var deviceMatch = GetManager().IsMatch(device.ToDeviceIdentification(), profile2.Identification);
+ var deviceMatch2 = GetManager().IsMatch(device.ToDeviceIdentification(), profile.Identification);
+
Assert.True(deviceMatch);
+ Assert.True(deviceMatch2);
}
[Fact]