tests: Fix tests to allow more than one gpu to be returned from InitAndEnum
diff --git a/tests/image_tests.cpp b/tests/image_tests.cpp
index 834942f..eaee05d 100644
--- a/tests/image_tests.cpp
+++ b/tests/image_tests.cpp
@@ -95,7 +95,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";
this->m_device = new XglDevice(0, objs[0]);
}