Update nuget packages

This commit is contained in:
Luke 2025-01-11 19:56:38 +10:00
parent 9b6a245c2c
commit 0c4c7db52e
6 changed files with 23 additions and 20 deletions

View file

@ -21,17 +21,17 @@ public class GroupTests
groups.AddPermissions("test", new() { "abc" });
var hasperm = groups.GetGroupByName("test").Permissions.Contains("abc");
Assert.IsTrue(hasperm);
Assert.That(hasperm, Is.True);
groups.DeletePermissions("test", new() { "abc" });
hasperm = groups.GetGroupByName("test").Permissions.Contains("abc");
Assert.IsFalse(hasperm);
Assert.That(hasperm, Is.False);
groups.DeleteGroup("test");
var g = groups.GetGroupByName("test");
Assert.IsNull(g);
Assert.That(g, Is.Null);
}
}