tests: Fix tests to allow more than one gpu to be returned from InitAndEnum
diff --git a/tests/xglrenderframework.h b/tests/xglrenderframework.h
index d2ddae2..0b6277b 100644
--- a/tests/xglrenderframework.h
+++ b/tests/xglrenderframework.h
@@ -109,7 +109,7 @@
         err = xglInitAndEnumerateGpus(&app_info, NULL,
                                       MAX_GPUS, &this->gpu_count, objs);
         ASSERT_XGL_SUCCESS(err);
-        ASSERT_GE(1, this->gpu_count) << "No GPU available";
+        ASSERT_GE(this->gpu_count, 1) << "No GPU available";
 
         m_device = new XglDevice(0, objs[0]);
         m_device->get_device_queue();