tests: Fix tests to allow more than one gpu to be returned from InitAndEnum
diff --git a/tests/xglrenderframework.cpp b/tests/xglrenderframework.cpp
index d0a65f1..688a41b 100644
--- a/tests/xglrenderframework.cpp
+++ b/tests/xglrenderframework.cpp
@@ -62,7 +62,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();