aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Moore <devinmoore@google.com>2024-04-09 16:09:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-09 16:09:22 +0000
commitf176b43a5a0057d7af358ef46fb8f460de644169 (patch)
treef1ce599801dfb273df19d84c47366188a16cead8
parenta0876ee44e4b0b69ffc65725d3891d32882187c1 (diff)
parent630ace55bdfbd50c44c0c0ea9947a0f9880558ba (diff)
downloadhidl-f176b43a5a0057d7af358ef46fb8f460de644169.tar.gz
Merge "Add log and use ExpectDeepEq for testing arrays with doubles" into main
-rw-r--r--test/java_test/src/com/android/commands/hidl_test_java/HidlTestJava.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/java_test/src/com/android/commands/hidl_test_java/HidlTestJava.java b/test/java_test/src/com/android/commands/hidl_test_java/HidlTestJava.java
index 0999a92a..ef305874 100644
--- a/test/java_test/src/com/android/commands/hidl_test_java/HidlTestJava.java
+++ b/test/java_test/src/com/android/commands/hidl_test_java/HidlTestJava.java
@@ -1097,7 +1097,7 @@ public final class HidlTestJava {
}
IBase.LotsOfPrimitiveArrays out = proxy.testArrays(in);
- ExpectTrue(in.equals(out));
+ ExpectDeepEq(in, out);
}
{
@@ -1430,6 +1430,7 @@ public final class HidlTestJava {
}
public LotsOfPrimitiveArrays testArrays(LotsOfPrimitiveArrays in) {
+ Log.d(TAG, "tesArrays " + in.toString());
return in;
}