summaryrefslogtreecommitdiff
path: root/services/tests
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-02-09 16:24:26 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-02-09 16:24:26 +0000
commit220091e16f0f154a423f67862258bb03e6f3dd9f (patch)
treee586c3f1924357f60c404fc1a31ada59b9c76d02 /services/tests
parent1d1c6ae770517fbd3a4fc1667c52a20ebebd218b (diff)
parent27f76dbf6f7caaf4971ff9c99eb57294ba26830d (diff)
Merge "Stop manually mixing /dev/hw_random."
Diffstat (limited to 'services/tests')
-rw-r--r--services/tests/servicestests/src/com/android/server/EntropyMixerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/tests/servicestests/src/com/android/server/EntropyMixerTest.java b/services/tests/servicestests/src/com/android/server/EntropyMixerTest.java
index 50e7a0395a2a..58d6dae1637a 100644
--- a/services/tests/servicestests/src/com/android/server/EntropyMixerTest.java
+++ b/services/tests/servicestests/src/com/android/server/EntropyMixerTest.java
@@ -34,7 +34,7 @@ public class EntropyMixerTest extends AndroidTestCase {
assertEquals(0, FileUtils.readTextFile(file, 0, null).length());
// The constructor has the side effect of writing to file
- new EntropyMixer(getContext(), "/dev/null", file.getCanonicalPath(), "/dev/null");
+ new EntropyMixer(getContext(), "/dev/null", file.getCanonicalPath());
assertTrue(FileUtils.readTextFile(file, 0, null).length() > 0);
}