Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69d28437 authored by Conley Owens's avatar Conley Owens Committed by Gerrit Code Review
Browse files

Merge "RRO tests: fix potential NPE"

parents ed23786c 840796a3
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -225,9 +225,13 @@ public abstract class OverlayBaseTest extends AndroidTestCase {
            reader = new BufferedReader(new InputStreamReader(input));
            actual = reader.readLine();
        } finally {
            if (reader != null) {
                reader.close();
            }
            if (input != null) {
                input.close();
            }
        }

        final String no = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, " +
            "sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. " +