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() {
158158 // --- Test Setup ---
159159 FlutterJNITester flutterJNI = new FlutterJNITester (true );
160160 int expectedFlag = 100 ;
161-
161+
162162 flutterJNI .setAccessibilityFeatures (expectedFlag );
163163 assertEquals (flutterJNI .flags , expectedFlag );
164164
@@ -171,7 +171,7 @@ public void doesNotSetAccessibilityIfNotAttached() {
171171 // --- Test Setup ---
172172 FlutterJNITester flutterJNI = new FlutterJNITester (false );
173173 int flags = 100 ;
174-
174+
175175 flutterJNI .setAccessibilityFeatures (flags );
176176 assertEquals (flutterJNI .flags , 0 );
177177
@@ -289,6 +289,7 @@ static class FlutterJNITester extends FlutterJNI {
289289 FlutterJNITester (boolean attached ) {
290290 this .isAttached = attached ;
291291 }
292+
292293 final boolean isAttached ;
293294 boolean semanticsEnabled = false ;
294295 int flags = 0 ;
@@ -305,7 +306,7 @@ public void setSemanticsEnabledInNative(boolean enabled) {
305306
306307 @ Override
307308 public void setAccessibilityFeaturesInNative (int flags ) {
308- this .flags = flags ;
309+ this .flags = flags ;
309310 }
310311 }
311312}
You can’t perform that action at this time.
0 commit comments