Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit c9e5da9

Browse files
committed
format
1 parent 404a55e commit c9e5da9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

shell/platform/android/test/io/flutter/embedding/engine/FlutterJNITest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)