Validate RDM and FP16 compute detection in Galaxy S9 (US) mock test
diff --git a/test/mock/galaxy-s9-us.cc b/test/mock/galaxy-s9-us.cc
index 6904a4b..9b30949 100644
--- a/test/mock/galaxy-s9-us.cc
+++ b/test/mock/galaxy-s9-us.cc
@@ -488,15 +488,11 @@
 }
 
 TEST(ISA, neon_rdm) {
-	ASSERT_FALSE(cpuinfo_has_arm_neon_rdm());
+	ASSERT_TRUE(cpuinfo_has_arm_neon_rdm());
 }
 
 TEST(ISA, fp16_arith) {
-	#if CPUINFO_ARCH_ARM
-		ASSERT_FALSE(cpuinfo_has_arm_fp16_arith());
-	#elif CPUINFO_ARCH_ARM64
-		ASSERT_TRUE(cpuinfo_has_arm_fp16_arith());
-	#endif
+	ASSERT_TRUE(cpuinfo_has_arm_fp16_arith());
 }
 
 TEST(ISA, jscvt) {