We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c35919 commit e586a61Copy full SHA for e586a61
1 file changed
src/test/java/io/getstream/chat/java/AppTest.java
@@ -44,21 +44,6 @@ void whenCallingGetAppAsync_thenNoException() {
44
@DisplayName("App Settings update does not throw Exception")
45
@Test
46
void whenUpdatingAppSettings_thenNoException() {
47
- Assertions.assertDoesNotThrow(
48
- () ->
49
- App.update()
50
- .disableAuthChecks(true)
51
- .disablePermissionsChecks(true)
52
- .asyncModerationConfig(
53
- App.AsyncModerationConfigRequestObject.builder()
54
- .callback(
55
- App.AsyncModerationCallback.builder()
56
- .mode("CALLBACK_MODE_REST")
57
- .serverUrl("http://localhost.com")
58
- .build())
59
- .timeoutMs(3000)
60
61
- .request());
62
Assertions.assertDoesNotThrow(
63
() -> App.update().disableAuthChecks(false).disablePermissionsChecks(false).request());
64
}
0 commit comments