File tree 2 files changed +4
-3
lines changed
androidTest/java/com/owncloud/android/utils/theme
main/java/com/owncloud/android
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,12 @@ import org.junit.Test
17
17
class CapabilityUtilsIT : AbstractIT () {
18
18
@Test
19
19
fun checkOutdatedWarning () {
20
+ assertFalse(test(NextcloudVersion .nextcloud_31))
20
21
assertFalse(test(NextcloudVersion .nextcloud_30))
21
22
assertFalse(test(NextcloudVersion .nextcloud_29))
22
- assertFalse(test(NextcloudVersion .nextcloud_28))
23
- assertFalse(test(NextcloudVersion .nextcloud_27))
24
23
24
+ assertTrue(test(NextcloudVersion .nextcloud_28))
25
+ assertTrue(test(NextcloudVersion .nextcloud_27))
25
26
assertTrue(test(NextcloudVersion .nextcloud_26))
26
27
assertTrue(test(NextcloudVersion .nextcloud_25))
27
28
assertTrue(test(NextcloudVersion .nextcloud_24))
Original file line number Diff line number Diff line change 129
129
* Contains methods to build the "static" strings. These strings were before constants in different classes.
130
130
*/
131
131
public class MainApp extends Application implements HasAndroidInjector , NetworkChangeListener {
132
- public static final OwnCloudVersion OUTDATED_SERVER_VERSION = NextcloudVersion .nextcloud_26 ;
132
+ public static final OwnCloudVersion OUTDATED_SERVER_VERSION = NextcloudVersion .nextcloud_28 ;
133
133
public static final OwnCloudVersion MINIMUM_SUPPORTED_SERVER_VERSION = OwnCloudVersion .nextcloud_18 ;
134
134
135
135
private static final String TAG = MainApp .class .getSimpleName ();
You can’t perform that action at this time.
0 commit comments