WifiConfigLockdownTest: fix wrong assertion

Bug: 195602033
Test: atest com.android.cts.devicepolicy.DeviceOwnerTest#testWifiConfigLockdown
Change-Id: Ic010195d033042318d898e093e94636280238c8e
diff --git a/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/WifiConfigLockdownTest.java b/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/WifiConfigLockdownTest.java
index 2d4a322..c210a8c 100644
--- a/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/WifiConfigLockdownTest.java
+++ b/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/WifiConfigLockdownTest.java
@@ -152,7 +152,7 @@
             }
         }
         // There might be auto-upgrade configs returned.
-        assertEquals("Expected to try to remove one config: the DO created one." +
+        assertTrue("Expected to try to remove one config: the DO created one." +
                 " Instead tried to remove: " + removeCount, removeCount >= 1);
 
         // Assert nothing has changed
@@ -164,7 +164,7 @@
             }
         }
         // There might be auto-upgrade configs returned.
-        assertEquals("Expected to see one unchanged config, saw instead: " + notChangedCount,
+        assertTrue("Expected to see one unchanged config, saw instead: " + notChangedCount,
                 notChangedCount >= 1);
     }