From 4b0cbfde75c2d30f16a31e31ee68f2255892e71b Mon Sep 17 00:00:00 2001 From: Amon Al-Khatib Date: Tue, 19 Jul 2022 17:18:32 -0700 Subject: [PATCH] correct indentations and newline --- .../chiptool/CHIPDeviceControllerTest.java | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/android/CHIPTool/app/src/androidTest/java/com/google/chip/chiptool/CHIPDeviceControllerTest.java b/src/android/CHIPTool/app/src/androidTest/java/com/google/chip/chiptool/CHIPDeviceControllerTest.java index aa444ef422304d..a179e9234c8d73 100644 --- a/src/android/CHIPTool/app/src/androidTest/java/com/google/chip/chiptool/CHIPDeviceControllerTest.java +++ b/src/android/CHIPTool/app/src/androidTest/java/com/google/chip/chiptool/CHIPDeviceControllerTest.java @@ -18,21 +18,21 @@ */ @RunWith(AndroidJUnit4.class) public class CHIPDeviceControllerTest { - @Test - public void PaseVerifierTest() { - long deviceId = 123L; - long setupPincode = 808080L; - long iterations = 1000L; - byte[] randomSalt = "hEvzbU:%h)?aB,h7+9fn[Lf[BhYB!=TA".getBytes(); + @Test + public void PaseVerifierTest() { + long deviceId = 123L; + long setupPincode = 808080L; + long iterations = 1000L; + byte[] randomSalt = "hEvzbU:%h)?aB,h7+9fn[Lf[BhYB!=TA".getBytes(); - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - ChipDeviceController chipDeviceController = ChipClient.INSTANCE.getDeviceController(appContext); + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + ChipDeviceController chipDeviceController = ChipClient.INSTANCE.getDeviceController(appContext); - PaseVerifierParams params = - chipDeviceController.computePaseVerifier(deviceId, setupPincode, iterations, randomSalt); + PaseVerifierParams params = + chipDeviceController.computePaseVerifier(deviceId, setupPincode, iterations, randomSalt); - assertNotNull(params); - assertEquals(params.getSetupPincode(), setupPincode); - assertNotNull(params.getPakeVerifier()); - } -} \ No newline at end of file + assertNotNull(params); + assertEquals(params.getSetupPincode(), setupPincode); + assertNotNull(params.getPakeVerifier()); + } +}