Merge "Skip multi-device tests instead of abort if device is non-B+ devices" into main am: c049f61372

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/3551060

Change-Id: Ia75b18eb3ab7198bf081141df26f26cb43fe5844
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/staticlibs/testutils/host/python/apf_utils.py b/staticlibs/testutils/host/python/apf_utils.py
index 3fee99f..fa8a1da 100644
--- a/staticlibs/testutils/host/python/apf_utils.py
+++ b/staticlibs/testutils/host/python/apf_utils.py
@@ -442,7 +442,7 @@
         "client device is not B+"
       )
 
-      asserts.abort_class_if(not self.client.isAtLeastB(), "not B+")
+      asserts.skip_if(not self.client.isAtLeastB(), "not B+")
       return test_function(self, *args, **kwargs)
     return wrapper
   return decorator