layers: Fix Windows compiler warnings
diff --git a/tests/init.cpp b/tests/init.cpp
index e32a29b..0c058ea 100644
--- a/tests/init.cpp
+++ b/tests/init.cpp
@@ -59,7 +59,6 @@
 #include <string.h>
 
 #include <vulkan.h>
-#include "gtest-1.7.0/include/gtest/gtest.h"
 
 #include "vktestbinding.h"
 #include "test_common.h"
@@ -116,7 +115,7 @@
         ASSERT_LE(this->gpu_count, ARRAY_SIZE(objs)) << "Too many GPUs";
         err = vkEnumeratePhysicalDevices(inst, &this->gpu_count, objs);
         ASSERT_VK_SUCCESS(err);
-        ASSERT_GE(this->gpu_count, 1) << "No GPU available";
+        ASSERT_GE(this->gpu_count, (uint32_t) 1) << "No GPU available";
 
         m_device_id = 0;
         this->m_device = new vk_testing::Device(objs[m_device_id]);