update CHANGELOG.md // adjust unit tests to changed permission

This commit is contained in:
Eduard Heimbuch
2020-05-05 11:15:26 +02:00
parent 63e5d2f23d
commit f3d289546e
5 changed files with 14 additions and 13 deletions

View File

@@ -602,12 +602,12 @@ class DefaultPluginManagerTest {
}
@Nested
class WithoutManagePermissions {
class WithoutWritePermissions {
@BeforeEach
void setUpSubject() {
ThreadContext.bind(subject);
doThrow(AuthorizationException.class).when(subject).checkPermission("plugin:manage");
doThrow(AuthorizationException.class).when(subject).checkPermission("plugin:write");
}
@AfterEach