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

Commit 6a53bd9d authored by Conley Owens's avatar Conley Owens Committed by Android Git Automerger
Browse files

am 69d28437: Merge "RRO tests: fix potential NPE"

* commit '69d28437':
  RRO tests: fix potential NPE
parents c657b302 69d28437
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. " +