This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
shell/platform/android/test/io/flutter/embedding/engine Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ public void setAccessibilityIfAttached() {
158
158
// --- Test Setup ---
159
159
FlutterJNITester flutterJNI = new FlutterJNITester (true );
160
160
int expectedFlag = 100 ;
161
-
161
+
162
162
flutterJNI .setAccessibilityFeatures (expectedFlag );
163
163
assertEquals (flutterJNI .flags , expectedFlag );
164
164
@@ -171,7 +171,7 @@ public void doesNotSetAccessibilityIfNotAttached() {
171
171
// --- Test Setup ---
172
172
FlutterJNITester flutterJNI = new FlutterJNITester (false );
173
173
int flags = 100 ;
174
-
174
+
175
175
flutterJNI .setAccessibilityFeatures (flags );
176
176
assertEquals (flutterJNI .flags , 0 );
177
177
@@ -289,6 +289,7 @@ static class FlutterJNITester extends FlutterJNI {
289
289
FlutterJNITester (boolean attached ) {
290
290
this .isAttached = attached ;
291
291
}
292
+
292
293
final boolean isAttached ;
293
294
boolean semanticsEnabled = false ;
294
295
int flags = 0 ;
@@ -305,7 +306,7 @@ public void setSemanticsEnabledInNative(boolean enabled) {
305
306
306
307
@ Override
307
308
public void setAccessibilityFeaturesInNative (int flags ) {
308
- this .flags = flags ;
309
+ this .flags = flags ;
309
310
}
310
311
}
311
312
}
You can’t perform that action at this time.
0 commit comments